summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2019-03-21 13:50:32 +0100
committerLars-Dominik Braun <lars@6xq.net>2019-03-21 13:50:32 +0100
commit48a79ef69381266c3d46f446dc9b422a691a4a39 (patch)
tree56c495da06345ff56a66c406423d3e3e248a3147
parent9f5dce53744f421c95b099e28e4596b495f237de (diff)
downloadcrocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.tar.gz
crocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.tar.bz2
crocoite-48a79ef69381266c3d46f446dc9b422a691a4a39.zip
setup.py: Require Python >=3.6
-rw-r--r--setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 7344470..4db63aa 100644
--- a/setup.py
+++ b/setup.py
@@ -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',
)