Skip to content

Commit

Permalink
Fix bug in setup.py and minor release 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Apr 17, 2024
1 parent 5e0d83b commit 30714f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Official releases

## v0.1.6 (2024-04-17)
## v0.1.7 (2024-04-17)

- Minor improvements to PyPI release

Expand Down
2 changes: 1 addition & 1 deletion coolest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# Set the package release version
version_info = (0, 1, 6)
version_info = (0, 1, 7)
__version__ = '.'.join(str(c) for c in version_info)

# Set the package details
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
download_url=f"https://github.com/aymgal/coolest/archive/refs/tags/v{version}.tar.gz",
packages=setuptools.find_packages(),
license=release_info['__license__'],
description=release_info['__about__'],
description=release_info['__description__'],
long_description=readme,
long_description_content_type='text/markdown',
keywords=["coolest", "lensing", "gravitation", "astrophysics"],
Expand Down

0 comments on commit 30714f9

Please sign in to comment.