Skip to content

Commit

Permalink
Merge pull request #330 from WilliamJamieson/bugfix/pyproject.toml_cl…
Browse files Browse the repository at this point in the history
…assifiers
  • Loading branch information
WilliamJamieson committed Aug 8, 2022
2 parents 10838fb + 632df09 commit d28131a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ The stable ASDF Standard is v1.5.0
written from ``asdf-astropy``. [#319]
- Move packaging to ``pyproject.toml`` file from ``setup.cfg`` and ``setup.py``
files. [#321]
- Remove `tag` from within the `time-1.1.0` schema. [#323]
- Remove `tag` from within the remaining schemas. [#326]
- Remove ``tag`` from within the ``time-1.1.0`` schema. [#323]
- Remove ``tag`` from within the remaining schemas. [#326]

1.0.2 (2022-04-15)
------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
copyright = f"{datetime.datetime.now().year}, {configuration['authors'][0]}"

# The short X.Y version
version = [ver for ver in configuration["classifiers"] if "ASDF Standard Version" in ver][0].split(" :: ")[-1]
with open(Path(__file__).parent.parent.parent / "README.md") as readme:
version = readme.readline().split(" ")[-1]

# The full version, including alpha/beta/rc tags
release = get_distribution(configuration["name"]).version
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers = [
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Development Status :: 5 - Production/Stable',
'ASDF Standard Version :: 1.6.0',
]
dependencies = [
'importlib_resources >= 3; python_version<"3.9"'
Expand Down

0 comments on commit d28131a

Please sign in to comment.