Skip to content

Commit

Permalink
sunset py3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jan 3, 2021
1 parent 4c6a3e3 commit 7106d15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ matrix:
env:
- COVERAGE="true"

- python: '3.5'
env:

- python: '3.6'
dist: xenial
env:
- COVERAGE="true"

Expand Down Expand Up @@ -38,6 +36,7 @@ matrix:
env:

- python: 'pypy3'
dist: xenial
env:

allow_failures:
Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
unsupported = None
if sys.version_info < (2, 7):
unsupported = 'Versions of Python before 2.7 are not supported'
elif (3, 0) <= sys.version_info < (3, 5):
unsupported = 'Versions of Python before 3.5 are not supported'
elif (3, 0) <= sys.version_info < (3, 6):
unsupported = 'Versions of Python before 3.6 are not supported'
if unsupported:
raise ValueError(unsupported)

Expand Down Expand Up @@ -216,7 +216,7 @@
``pathos`` requires:
- ``python``, **version == 2.7** or **version >= 3.5**, or ``pypy``
- ``python``, **version == 2.7** or **version >= 3.6**, or ``pypy``
- ``dill``, **version >= 0.3.3**
- ``pox``, **version >= 0.2.9**
- ``ppft``, **version >= 1.6.6.3**
Expand Down Expand Up @@ -346,7 +346,12 @@ def write_info_py(filename='pathos/info.py'):
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ envlist =
py27
# py33
# py34
py35
# py35
py36
py37
py38
Expand Down

0 comments on commit 7106d15

Please sign in to comment.