Skip to content

Commit

Permalink
Drop Python 3.3 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedarcy committed Aug 12, 2019
1 parent 2caf7ca commit 3b03b79
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ denormalized path separator (unix-style `/`) similar to payload file
manifest entries.
* Return result bag path from the `materialize()` function.
* Don't use strict mode when guessing mime types to allow for user-extended types.
* Dropped Python 3.3 support.

## 1.5.4

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
'boto': ["boto3>=1.9.5", "botocore", "awscli"],
'globus': ["globus_sdk>=1.6.0"],
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, <4',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4',
license='Apache 2.0',
classifiers=[
'Intended Audience :: Science/Research',
Expand All @@ -80,7 +80,6 @@
"Operating System :: Microsoft :: Windows",
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
Expand Down

0 comments on commit 3b03b79

Please sign in to comment.