mark support for python 3.7

This commit is contained in:
Maciej Urbanski 2018-06-29 20:41:23 +02:00
parent 7d4c798c6a
commit f666640fff
No known key found for this signature in database
GPG Key ID: 9A1A800C0AD21A36
3 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,9 @@
language: python
dist: xenial # minimal version required for python 3.7 support
python:
- "2.7"
- "3.6"
- "3.7-dev" # until 3.7 is officially supported by travis this is only (simple) way to test it
- "nightly"
matrix:

View File

@ -61,7 +61,7 @@ Development
.. code-block:: bash
python3.6 -m venv .venv
python3 -m venv .venv
source .venv/bin/activate
3. Install dependencies

View File

@ -47,6 +47,8 @@ setup(
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords = 'monero cryptocurrency',
test_suite='tests',