Skip to content

Commit

Permalink
Merge pull request #1089 from rzellem/issue_988
Browse files Browse the repository at this point in the history
Revert to support Python 3.7.x
  • Loading branch information
rzellem authored Oct 29, 2022
2 parents 0029feb + 5716ccf commit 31dc03e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion exotic/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.1'
__version__ = '2.1.0'
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[build-system]
requires = [
"cython~=0.29.32;platform_system!='Windows'",
"importlib-metadata>=3.6;python_version<='3.7'",
"oldest-supported-numpy",
"setuptools>=62.6",
"setuptools_scm[toml]>=6.4.2",
Expand All @@ -9,5 +10,5 @@ requires = [
build-backend = "setuptools.build_meta"

[tool.setuptools_scm]
write_to = 'exotic/version.py'
write_to = "exotic/version.py"
write_to_template = "__version__ = '{version}'\n"
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ astroquery~=0.4
barycorrpy~=0.4
dynesty~=1.2.3;platform_system=='Windows'
holoviews~=1.15
importlib-metadata>=3.6;python_version<='3.7'
LDTk~=1.7
lmfit~=1.0
matplotlib>=3.4
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers =
License :: Other/Proprietary License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering :: Astronomy
Expand All @@ -33,7 +33,7 @@ keywords = nasa, jpl, exoplanet, transit, citizen science, astronomy, bayesian,

[options]
zip_safe = False
python_requires = >=3.8
python_requires = >=3.7
include_package_data = True
packages =
exotic
Expand Down

0 comments on commit 31dc03e

Please sign in to comment.