From f666640fff64f26b54ed5cc8ac09a1f0dc74cd48 Mon Sep 17 00:00:00 2001 From: Maciej Urbanski Date: Fri, 29 Jun 2018 20:41:23 +0200 Subject: [PATCH] mark support for python 3.7 --- .travis.yml | 2 ++ README.rst | 2 +- setup.py | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 58cd1d9..8aa4106 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/README.rst b/README.rst index 24d3475..317afd9 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,7 @@ Development .. code-block:: bash - python3.6 -m venv .venv + python3 -m venv .venv source .venv/bin/activate 3. Install dependencies diff --git a/setup.py b/setup.py index ef7c688..6a055f0 100644 --- a/setup.py +++ b/setup.py @@ -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',