Skip to content

Commit bdf5129

Browse files
committed
BLD: Set python oldest supported version to 3.7 (#507)
1 parent e07c5e0 commit bdf5129

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525

2626
- name: oldest supported versions
2727
os: ubuntu-latest
28-
python: 3.6
29-
toxenv: py36-test-oldest
28+
python: 3.7
29+
toxenv: py37-test-oldest
3030

3131
- name: macOS latest supported
3232
os: macos-latest

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Before your pull request can be merged into the codebase, it will be reviewed by
129129
General Guidelines
130130
^^^^^^^^^^^^^^^^^^
131131

132-
- SkyPy is compatible with Python>=3.6 (see `setup.cfg <https://github.com/skypyproject/skypy/blob/main/setup.cfg>`_). SkyPy *does not* support backwards compatibility with Python 2.x; `six`, `__future__` and `2to3` should not be used.
132+
- SkyPy is compatible with Python>=3.7 (see `setup.cfg <https://github.com/skypyproject/skypy/blob/main/setup.cfg>`_). SkyPy *does not* support backwards compatibility with Python 2.x; `six`, `__future__` and `2to3` should not be used.
133133
- All contributions should follow the `PEP8 Style Guide for Python Code <https://www.python.org/dev/peps/pep-0008/>`_. We recommend using `flake8 <https://flake8.pycqa.org/>`__ to check your code for PEP8 compliance.
134134
- Importing SkyPy should only depend on having `NumPy <https://www.numpy.org>`_, `SciPy <https://www.scipy.org/>`_ and `Astropy <https://www.astropy.org/>`__ installed.
135135
- Code is grouped into submodules based on broad science areas e.g. `galaxies <https://skypy.readthedocs.io/en/stable/galaxies.html>`_. There is also a `utils <https://skypy.readthedocs.io/en/stable/utils/index.html>`_ submodule for general utility functions.

docs/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ can be installed directly from GitHub using a recent version of pip:
4040
Dependencies
4141
------------
4242

43-
SkyPy is compatble with Python versions 3.6 or later on Ubuntu, macOS and
43+
SkyPy is compatble with Python versions 3.7 or later on Ubuntu, macOS and
4444
Windows operating systems. It has the following core dependencies:
4545

4646
- `astropy <https://www.astropy.org/>`__

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ github_project = skypyproject/skypy
1414
[options]
1515
zip_safe = False
1616
packages = find:
17-
python_requires = >=3.6
17+
python_requires = >=3.7
1818
setup_requires = setuptools_scm
1919
install_requires =
2020
astropy>=4

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39,310}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
4-
py{36,37,38,39,310}-test-numpy{116,117,118,119,120,121,122}
5-
py{36,37,38,39,310}-test-scipy{12,13,14,15,16,17}
6-
py{36,37,38,39,310}-test-astropy{40,41,42,43,50}
3+
py{37,38,39,310}-test{,-all}{,-dev,-latest,-oldest}{,-cov}
4+
py{37,38,39,310}-test-numpy{116,117,118,119,120,121,122}
5+
py{37,38,39,310}-test-scipy{12,13,14,15,16,17}
6+
py{37,38,39,310}-test-astropy{40,41,42,43,50}
77
build_docs
88
linkcheck
99
codestyle

0 commit comments

Comments
 (0)