Skip to content

Commit

Permalink
Drop support for Python 3.3 and 3.4
Browse files Browse the repository at this point in the history
Travis doesn't provide Python 3.3 anymore.
Dill requires at least Python 3.5.
  • Loading branch information
maurosilber committed Aug 22, 2020
1 parent f69d616 commit c94f2d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
language: python

python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

env:
- EXTRAS="N"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ def read(filename):
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
])

0 comments on commit c94f2d9

Please sign in to comment.