Skip to content

Commit 14ad3d9

Browse files
authored
Merge pull request #55 from Sparks29032/dynamic_versioning
Tag-based dynamic versioning
2 parents 52961a6 + 02440f4 commit 14ad3d9

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

.github/workflows/docs.yml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
shell: bash -l {0}
1515
steps:
1616
- uses: actions/checkout@v3
17+
with:
18+
fetch-depth: 0
1719

1820
- uses: conda-incubator/setup-miniconda@v2
1921
with:

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
with:
2222
repository: diffpy/diffpy.utils
2323
path: .
24+
fetch-depth: 0 # avoid shallow clone with no tags
2425

2526
- name: initialize miniconda
2627
# this uses a marketplace action that sets up miniconda in a way that makes

README.rst

+6-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ If you prefer to install from sources, after installing the dependencies, obtain
5757
`GitHub <https://github.com/diffpy/diffpy.utils/>`_. Once installed, ``cd`` into your ``diffpy.utils`` directory
5858
and run the following ::
5959

60-
pip install -e .
60+
pip install .
6161

6262
To check the installation integrity, if the following passes all checks, you are good! ::
6363

@@ -75,9 +75,12 @@ https://github.com/diffpy/diffpy.utils.
7575

7676
Feel free to fork the project and contribute. To install diffpy.utils
7777
in a development mode, with its sources being directly used by Python
78-
rather than copied to a package directory, use ::
78+
rather than copied to a package directory, use the following in the root
79+
directory ::
80+
81+
pip install -e .
7982

80-
python setup.py develop --user
83+
Note that this is only supported for `setuptools` version 62.0 and above.
8184

8285

8386
CONTACTS

doc/manual/source/conf.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
# The version info for the project you're documenting, acts as replacement for
6464
# |version| and |release|, also used in various other places throughout the
6565
# built documents.
66-
from setup import versiondata
67-
fullversion = versiondata.get('DEFAULT', 'version')
66+
from importlib.metadata import version
67+
fullversion = version(project)
6868
# The short X.Y version.
6969
version = ''.join(fullversion.split('.post')[:1])
7070
# The full version, including alpha/beta/rc tags.
@@ -77,8 +77,7 @@
7777
# There are two options for replacing |today|: either, you set today to some
7878
# non-false value, then it is used:
7979
#today = ''
80-
today_seconds = versiondata.getint('DEFAULT', 'timestamp')
81-
today = time.strftime('%B %d, %Y', time.localtime(today_seconds))
80+
today = time.strftime('%B %d, %Y', time.localtime())
8281
year = today.split()[-1]
8382
# Else, today_fmt is used as the format for a strftime call.
8483
#today_fmt = '%B %d, %Y'

pyproject.toml

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[build-system]
2-
requires = ["setuptools>=62.0"]
2+
requires = ["setuptools>=62.0", "setuptools-git-versioning<2"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "diffpy.utils"
7-
version = "3.2.7"
7+
dynamic=['version']
88
authors = [
99
{ name="Simon J.L. Billinge group", email="[email protected]" },
1010
]
@@ -14,7 +14,7 @@ maintainers = [
1414
description = "Shared utilities for diffpy packages."
1515
keywords = ["text data parsers", "wx grid", "diffraction objects"]
1616
readme = "README.rst"
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.9"
1818
classifiers = [
1919
'Development Status :: 5 - Production/Stable',
2020
'Environment :: Console',
@@ -26,7 +26,6 @@ classifiers = [
2626
'Operating System :: POSIX',
2727
'Operating System :: Unix',
2828
'Programming Language :: Python :: 2.7',
29-
'Programming Language :: Python :: 3.8',
3029
'Programming Language :: Python :: 3.9',
3130
'Programming Language :: Python :: 3.10',
3231
'Programming Language :: Python :: 3.11',
@@ -38,6 +37,12 @@ classifiers = [
3837
Homepage = "https://github.com/diffpy/diffpy.utils/"
3938
Issues = "https://github.com/diffpy/diffpy.utils/issues"
4039

40+
[tool.setuptools-git-versioning]
41+
enabled = true
42+
template = "{tag}"
43+
dev_template = "{tag}.post{ccount}"
44+
dirty_template = "{tag}.post{ccount}"
45+
4146
[tool.setuptools.packages.find]
4247
where = ["src"] # list of folders that contain the packages (["."] by default)
4348
include = ["diffpy*"] # package names should match these glob patterns (["*"] by default)

src/diffpy/utils/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
with as_file(ref) as fcfg:
3737
if not os.path.isfile(fcfg): # pragma: no cover
3838
from warnings import warn
39-
warn('Package metadata not found, execute "./setup.py egg_info".')
39+
warn('Package metadata not found.')
4040
fcfg = os.devnull
4141
with open(fcfg) as fp:
4242
kwords = [[w.strip() for w in line.split(' = ', 1)]

0 commit comments

Comments
 (0)