-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Scipy version selected by dependabot didn't take into account the Pyt…
…hon v3.8 that I have to work with because I haven't addressed dependancies in XGA for far too long Signed-off-by: David Turner <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ beautifulsoup4~=4.11.1 | |
tabulate~=0.9.0 | ||
regions~=0.4 | ||
unlzw3~=0.2.2 | ||
scipy~=1.11.1 | ||
scipy~=1.10.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# This code is a part of the Democratising Archival X-ray Astronomy (DAXA) module. | ||
# Last modified by David J Turner ([email protected]) 25/04/2024, 17:44. Copyright (c) The Contributors | ||
# Last modified by David J Turner ([email protected]) 25/04/2024, 17:54. Copyright (c) The Contributors | ||
|
||
from os import path | ||
|
||
|
@@ -24,7 +24,7 @@ | |
long_description_content_type='text/markdown', | ||
setup_requires=[], | ||
install_requires=["numpy==1.24.4", "astroquery==0.4.7", "pandas==2.0.3", "astropy==5.2.2", "packaging==21.3", | ||
"tqdm==4.66.2", "exceptiongroup==1.0.4", "scipy==1.11.1", "tabulate==0.9.0", "unlzw3==0.2.2"], | ||
"tqdm==4.66.2", "exceptiongroup==1.0.4", "scipy==1.10.1", "tabulate==0.9.0", "unlzw3==0.2.2"], | ||
include_package_data=True, | ||
python_requires='>=3.8' | ||
) |