Skip to content

Commit

Permalink
fixes #231 fixes #232: sunset 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Feb 21, 2022
1 parent 2f26de1 commit 7794646
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,9 @@ matrix:
env:
- COVERAGE="true"

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

- python: '3.7'
env:
- COVERAGE="true"

- python: '3.8'
env:
Expand All @@ -33,11 +30,6 @@ matrix:
env:
- MULTIPROCESS="true"

- python: 'pypy3.6-7.3.3' # most recent
dist: bionic
env:
- MULTIPROCESS="true"

- python: 'pypy3.7-7.3.5' # most recent
dist: bionic
env:
Expand Down
7 changes: 3 additions & 4 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, 6):
unsupported = 'Versions of Python before 3.6 are not supported'
elif (3, 0) <= sys.version_info < (3, 7):
unsupported = 'Versions of Python before 3.7 are not supported'
if unsupported:
raise ValueError(unsupported)

Expand Down Expand Up @@ -216,7 +216,7 @@
``pathos`` requires:
- ``python`` (or ``pypy``), **version == 2.7** or **version >= 3.6**
- ``python`` (or ``pypy``), **version == 2.7** or **version >= 3.7**
- ``dill``, **version >= 0.3.4**
- ``pox``, **version >= 0.3.0**
- ``ppft``, **version >= 1.6.6.4**
Expand Down Expand Up @@ -348,7 +348,6 @@ def write_info_py(filename='pathos/info.py'):
'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',
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ envlist =
# py33
# py34
# py35
py36
# py36
py37
py38
py39
py310
py311
# pypy27
pypy36
# pypy36
pypy37
pypy38

Expand Down

0 comments on commit 7794646

Please sign in to comment.