Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tag-based dynamic versioning #55

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- uses: conda-incubator/setup-miniconda@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
with:
repository: diffpy/diffpy.utils
path: .
fetch-depth: 0 # avoid shallow clone with no tags

- name: initialize miniconda
# this uses a marketplace action that sets up miniconda in a way that makes
Expand Down
9 changes: 6 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ If you prefer to install from sources, after installing the dependencies, obtain
`GitHub <https://github.com/diffpy/diffpy.utils/>`_. Once installed, ``cd`` into your ``diffpy.utils`` directory
and run the following ::

pip install -e .
pip install .

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

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

Feel free to fork the project and contribute. To install diffpy.utils
in a development mode, with its sources being directly used by Python
rather than copied to a package directory, use ::
rather than copied to a package directory, use the following in the root
directory ::

pip install -e .

python setup.py develop --user
Note that this is only supported for `setuptools` version 62.0 and above.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of this, do we just want to pin setuptools in the requirements to be >=62.0?



CONTACTS
Expand Down
7 changes: 3 additions & 4 deletions doc/manual/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
from setup import versiondata
fullversion = versiondata.get('DEFAULT', 'version')
from importlib.metadata import version
fullversion = version(project)
# The short X.Y version.
version = ''.join(fullversion.split('.post')[:1])
# The full version, including alpha/beta/rc tags.
Expand All @@ -77,8 +77,7 @@
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
today_seconds = versiondata.getint('DEFAULT', 'timestamp')
today = time.strftime('%B %d, %Y', time.localtime(today_seconds))
today = time.strftime('%B %d, %Y', time.localtime())
year = today.split()[-1]
# Else, today_fmt is used as the format for a strftime call.
#today_fmt = '%B %d, %Y'
Expand Down
13 changes: 9 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[build-system]
requires = ["setuptools>=62.0"]
requires = ["setuptools>=62.0", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"

[project]
name = "diffpy.utils"
version = "3.2.7"
dynamic=['version']
authors = [
{ name="Simon J.L. Billinge group", email="[email protected]" },
]
Expand All @@ -14,7 +14,7 @@ maintainers = [
description = "Shared utilities for diffpy packages."
keywords = ["text data parsers", "wx grid", "diffraction objects"]
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
Expand All @@ -26,7 +26,6 @@ classifiers = [
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand All @@ -38,6 +37,12 @@ classifiers = [
Homepage = "https://github.com/diffpy/diffpy.utils/"
Issues = "https://github.com/diffpy/diffpy.utils/issues"

[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dev_template = "{tag}.post{ccount}"
dirty_template = "{tag}.post{ccount}"

[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["diffpy*"] # package names should match these glob patterns (["*"] by default)
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
with as_file(ref) as fcfg:
if not os.path.isfile(fcfg): # pragma: no cover
from warnings import warn
warn('Package metadata not found, execute "./setup.py egg_info".')
warn('Package metadata not found.')
fcfg = os.devnull
with open(fcfg) as fp:
kwords = [[w.strip() for w in line.split(' = ', 1)]
Expand Down
Loading