Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop formal support for python 3.7 #207

Merged
merged 1 commit into from
Aug 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ language: python

matrix:
include:
- python: '3.7'
env:

- python: '3.8'
env:

Expand All @@ -29,9 +26,6 @@ matrix:
- DILL="master"
- KLEPTO="master"

- python: 'pypy3.7-7.3.9'
env:

- python: 'pypy3.8-7.3.9' # at 7.3.11
env:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Requirements
------------
``mystic`` requires:

* ``python`` (or ``pypy``), **>=3.7**
* ``python`` (or ``pypy``), **>=3.8**
* ``setuptools``, **>=42**
* ``cython``, **>=0.29.30**
* ``numpy``, **>=1.0**
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
import os
import sys
# drop support for older python
if sys.version_info < (3, 7):
unsupported = 'Versions of Python before 3.7 are not supported'
if sys.version_info < (3, 8):
unsupported = 'Versions of Python before 3.8 are not supported'
raise ValueError(unsupported)

# get distribution meta info
Expand Down Expand Up @@ -55,14 +55,13 @@
'Source Code':'https://github.com/uqfoundation/mystic',
'Bug Tracker':'https://github.com/uqfoundation/mystic/issues',
},
python_requires = '>=3.7',
python_requires = '>=3.8',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand Down
4 changes: 0 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
skip_missing_interpreters=
True
envlist =
py37-numpy12-sympy11
py38-numpy12-sympy11
py39-numpy12-sympy11
py310-numpy12-sympy11
py311-numpy12-sympy11
py312-numpy12-sympy11
pypy37-numpy12-sympy11
pypy38-numpy12-sympy11
pypy39-numpy12-sympy11
pypy310-numpy12-sympy11
Expand All @@ -18,13 +16,11 @@ setenv =
PYTHONHASHSEED = 0
recreate = True
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
pypy37: pypy37
pypy38: pypy38
pypy39: pypy39
pypy310: pypy310
Expand Down