We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38c7a0 commit 291d719Copy full SHA for 291d719
setup.py
@@ -5,11 +5,6 @@
5
import sys
6
7
8
-if sys.version_info < (3, 6):
9
- print('adaptive requires Python 3.6 or above.')
10
- sys.exit(1)
11
-
12
13
# Loads _version.py module without importing the whole package.
14
def get_version_and_cmdclass(package_name):
15
import os
@@ -48,6 +43,7 @@ def get_version_and_cmdclass(package_name):
48
43
name='adaptive',
49
44
description='Adaptive parallel sampling of mathematical functions',
50
45
version=version,
46
+ python_requires='>=3.6',
51
47
url='https://adaptive.readthedocs.io/',
52
author='Adaptive authors',
53
license='BSD',
0 commit comments