diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2019-03-21 13:50:32 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2019-03-21 13:50:32 +0100 |
commit | 48a79ef69381266c3d46f446dc9b422a691a4a39 (patch) | |
tree | 56c495da06345ff56a66c406423d3e3e248a3147 | |
parent | 9f5dce53744f421c95b099e28e4596b495f237de (diff) | |
download | crocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.tar.gz crocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.tar.bz2 crocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.zip |
setup.py: Require Python >=3.6
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,6 +37,7 @@ setup( package_data={ 'crocoite': ['data/*'], }, - setup_requires=["pytest-runner"], + setup_requires=['pytest-runner'], tests_require=["pytest", 'pytest-asyncio', 'pytest-cov', 'hypothesis'], + python_requires='>=3.6', ) |