Skip to content

Commit

Permalink
Add Python 3.7 Compatibility
Browse files Browse the repository at this point in the history
Signed-off-by: alexgurrola <[email protected]>
  • Loading branch information
alexgurrola committed Aug 5, 2019
1 parent 4bac6d1 commit 42a3d36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],

# What does your project relate to?
Expand All @@ -76,7 +77,7 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['plac', 'pymongo'],
install_requires=['pymongo'],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,13 @@
# and also to help confirm pull requests to this project.

[tox]
envlist = py{35,36}
envlist = py{35,36,37}

[testenv]
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
deps =
check-manifest
readme_renderer
Expand Down

0 comments on commit 42a3d36

Please sign in to comment.