Skip to content

Commit 27da0ea

Browse files
committed
drop python 3.6
1 parent c812754 commit 27da0ea

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

.github/workflows/python-ci-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
max-parallel: 4
1414
matrix:
15-
python-version: ["3.6", "3.7", "3.8", "3.9"]
15+
python-version: ["3.7", "3.8", "3.9", "3.10"]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Cache Python packages

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ to determine dwarf galaxy satellite systems around 100 Milky Way analogs down
77
to the brightness of the Leo I galaxy (Mr < −12.3).
88

99
This `SAGA` package contains code to generate and access SAGA data catalogs.
10-
This package is intended for SAGA internal use, but it is licensed under the
11-
MIT license.
10+
This package is intended for SAGA internal use, but it is licensed under the
11+
MIT license.
1212
If you use this package or part of it in your research, please considering citing
1313
[SAGA II paper (Mao et al., 2021)](https://ui.adsabs.harvard.edu/abs/2021ApJ...907...85M/abstract).
1414

15-
- Visit [yymao/FoFCatalogMatching](https://github.com/yymao/FoFCatalogMatching)
15+
- Visit [yymao/FoFCatalogMatching](https://github.com/yymao/FoFCatalogMatching)
1616
if you are looking for the friends-of-friends sky catalog matching code.
17-
- Visit [yymao.github.io/decals-image-list-tool/](https://yymao.github.io/decals-image-list-tool/)
18-
if you are looking for the web app for listing cutouts from the egacy Surveys.
19-
- Visit [sagasurvey.org](https://sagasurvey.org) for the most up-to-date SAGA results!
17+
- Visit [yymao.github.io/decals-image-list-tool/](https://yymao.github.io/decals-image-list-tool/)
18+
if you are looking for the web app for listing cutouts from the Legacy Surveys.
19+
- Visit [sagasurvey.org](https://sagasurvey.org) for the most up-to-date SAGA results!
2020

2121

2222
## Installation
@@ -31,8 +31,7 @@ To force an update, run
3131
pip install --upgrade --no-deps --force-reinstall https://github.com/sagasurvey/saga/archive/master.zip
3232
```
3333

34-
The code should be compatible with Python 3.6+,
35-
but Python 3.6 support may be dropping in 2022.
34+
As of April 2022, this code base is compatible with Python 3.7 and above.
3635

3736
### Dependencies
3837

SAGA/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
SAGA package version
33
"""
4-
__version__ = "0.52.1"
4+
__version__ = "0.54.0"

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Code to access, create and edit SAGA Survey data catalogs.
44
Project website: http://sagasurvey.org/
55
The MIT License (MIT)
6-
Copyright (c) 2018-2021 The SAGA Survey
6+
Copyright (c) 2018-2022 The SAGA Survey
77
http://opensource.org/licenses/MIT
88
"""
99

@@ -31,21 +31,21 @@
3131
"Intended Audience :: Science/Research",
3232
"License :: OSI Approved :: MIT License",
3333
"Topic :: Scientific/Engineering :: Astronomy",
34-
"Programming Language :: Python :: 3.6",
3534
"Programming Language :: Python :: 3.7",
3635
"Programming Language :: Python :: 3.8",
3736
"Programming Language :: Python :: 3.9",
37+
"Programming Language :: Python :: 3.10",
3838
],
3939
keywords="SAGA",
4040
packages=find_packages(),
4141
install_requires=[
42-
"numpy>=1.15.3",
43-
"numexpr>=2.6",
44-
"astropy>=2.0",
45-
"easyquery>=0.1.5",
46-
"requests>=2.18",
42+
"numpy>=1.16",
43+
"numexpr>=2.7",
44+
"astropy>=3.0",
45+
"easyquery>=0.2",
46+
"requests>=2.20",
4747
],
4848
extras_require={
49-
"full": ["healpy>=1.12", "fast3tree>=0.3.1", "ipython", "scikit-learn", "pyperclip"],
49+
"full": ["healpy>=1.12", "fast3tree>=0.3.1", "ipython>=7.0", "scikit-learn>=0.20", "pyperclip>=1.7"],
5050
},
5151
)

0 commit comments

Comments
 (0)