Skip to content

Commit

Permalink
drop formal support for python 3.7 (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Aug 21, 2023
1 parent 2fbe2e1 commit 78bf5b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
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 @@ -23,9 +20,6 @@ matrix:
- python: '3.12-dev'
env:

- 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 @@ -107,7 +107,7 @@ Requirements
------------
``dill`` requires:

* ``python`` (or ``pypy``), **>=3.7**
* ``python`` (or ``pypy``), **>=3.8**
* ``setuptools``, **>=42**

Optional requirements:
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/dill',
'Bug Tracker':'https://github.com/uqfoundation/dill/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
2 changes: 0 additions & 2 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
py38
py39
py310
py311
py312
pypy37
pypy38
pypy39
pypy310
Expand Down

0 comments on commit 78bf5b9

Please sign in to comment.