Merge pull request #7 from nvllsvm/py

Add Py 3.6, 3.7; remove Py 3.4
This commit is contained in:
Gavin M. Roy 2018-11-21 20:58:18 -05:00 committed by GitHub
commit 66fc155f57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -2,8 +2,9 @@ sudo: false
language: python language: python
python: python:
- 2.7 - 2.7
- 3.4
- 3.5 - 3.5
- 3.6
- 3.7-dev
install: install:
- pip install -r requires/testing.txt - pip install -r requires/testing.txt
- pip install wheel - pip install wheel
@ -15,7 +16,7 @@ deploy:
provider: pypi provider: pypi
user: sprockets user: sprockets
on: on:
python: 3.5 python: 3.6
tags: true tags: true
all_branches: true all_branches: true
password: password:

View file

@ -44,8 +44,9 @@ setuptools.setup(
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy', 'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries',