Skip to content

Commit

Permalink
Switch to supporting only Python 3+
Browse files Browse the repository at this point in the history
Remove Python 2.7 from Travis
Add python_reqs to setup.py
Remove Python 2 trove classifier
  • Loading branch information
robintw committed Apr 21, 2020
1 parent ba46c44 commit 2fce6e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .travis.yml
@@ -1,7 +1,6 @@
language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.7"
- "3.5"
- "3.6"
- "3.7"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -48,6 +48,7 @@ def read_file(filepath, root=PROJECT_ROOT):
name = "Py6S",
packages = ['Py6S', 'Py6S.Params', 'Py6S.SixSHelpers'],
install_requires = REQS,
python_requires = '>=3',
version = "1.7.2",
author = "Robin Wilson",
author_email = "robin@rtwilson.com",
Expand All @@ -65,6 +66,5 @@ def read_file(filepath, root=PROJECT_ROOT):
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2"
],
)

0 comments on commit 2fce6e9

Please sign in to comment.