Skip to content

Commit c05a7c5

Browse files
committed
Update setup.py with compatibility and travis to remove faulty 3.7 testing.
1 parent 16b68bf commit c05a7c5

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ celerybeat-schedule
8989

9090
# virtualenv
9191
venv/
92+
v3nv/
9293
ENV/
9394

9495
# Spyder project settings

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ python:
33
- '2.7'
44
- '3.5'
55
- '3.6'
6-
- '3.7'
76
before_install:
87
- sudo apt-get update -qq
98
- pip install toil[all]==3.20.0

setup.py

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,18 @@
3939
],
4040
"toil": ["toil[all]==3.20.0"
4141
]},
42-
zip_safe=False
42+
zip_safe=False,
43+
platforms=['MacOS X', 'Posix'],
44+
classifiers=[
45+
'Intended Audience :: Developers',
46+
'License :: OSI Approved :: Apache Software License',
47+
'Operating System :: MacOS :: MacOS X',
48+
'Operating System :: POSIX',
49+
'Programming Language :: Python',
50+
'Programming Language :: Python :: 2.7',
51+
'Programming Language :: Python :: 3.5',
52+
'Programming Language :: Python :: 3.6',
53+
'Programming Language :: Python :: 3.7',
54+
'Topic :: Software Development :: Libraries :: Python Modules'
55+
]
4356
)

0 commit comments

Comments
 (0)