Skip to content

Commit

Permalink
Merge pull request #98 from lboschman/feature/update-package-versioning
Browse files Browse the repository at this point in the history
Improve dependencies, new python version
  • Loading branch information
kmhess authored Jun 13, 2024
2 parents 65a9014 + c6aec34 commit f523726
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SIP takes a SoFiA generated source catalog and produce images for publication or

Requirements
------------
This code has been developed and tested with Python 3.9.7, and appears to work with up to Python 3.11, but not 3.12.
This code has been developed and tested with Python 3.9.7, and appears to work with up to Python 3.12.

Combining individual images with the `-m` option requires [ImageMagick](https://imagemagick.org) be installed.

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ classifiers = [
dependencies = [
"astropy >= 5.0.2",
"astroquery >= 0.4.7",
"matplotlib >= 3.5.1, <3.8",
"numpy == 1.22.0",
"matplotlib >= 3.5.1",
"numpy >= 1.22.0",
"Pillow >= 10.0.1",
"pvextractor >= 0.4",
"requests >= 2.31.0",
"setuptools >= 65.5.1",
"sphinx_rtd_theme == 1.0.0",
"xmltodict == 0.12.0",
"sphinx_rtd_theme >= 1.0.0",
"xmltodict >= 0.12.0",
]

[project.scripts]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
astropy>=5.0.2
astroquery>=0.4.7
matplotlib>=3.5.1, <3.8
numpy==1.22.0
matplotlib>=3.5.1
numpy>=1.22.0
Pillow>=10.0.1
pvextractor>=0.4
requests>=2.31.0
setuptools>=65.5.1
sphinx_rtd_theme==1.0.0
xmltodict==0.12.0
sphinx_rtd_theme>=1.0.0
xmltodict>=0.12.0
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
install_requires=[
"astropy >= 5.0.2",
"astroquery >= 0.4.7",
"matplotlib >= 3.5.1, <3.8",
"numpy == 1.22.0",
"matplotlib >= 3.5.1",
"numpy >= 1.22.0",
"Pillow >= 10.0.1",
"pvextractor >= 0.4",
"requests >= 2.31.0",
"setuptools >= 65.5.1",
"sphinx_rtd_theme == 1.0.0",
"xmltodict == 0.12.0"
"sphinx_rtd_theme >= 1.0.0",
"xmltodict >= 0.12.0"
],
classifiers=[
'Programming Language :: Python :: 3',
Expand Down

0 comments on commit f523726

Please sign in to comment.