Skip to content

Commit 020172a

Browse files
authored
Drop setup reqs (#1104)
* bump development branch version * drop setup requirements
1 parent 6e58865 commit 020172a

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

autosklearn/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.12.4"
4+
__version__ = "0.12.5dev"

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
)
2121

2222
HERE = os.path.abspath(os.path.dirname(__file__))
23-
setup_reqs = ['Cython', 'numpy']
2423
with open(os.path.join(HERE, 'requirements.txt')) as fp:
2524
install_reqs = [r.rstrip() for r in fp.readlines()
2625
if not r.startswith('#') and not r.startswith('git+')]
@@ -62,7 +61,6 @@
6261
long_description_content_type='text/markdown',
6362
version=version,
6463
packages=find_packages(exclude=['test', 'scripts', 'examples']),
65-
setup_requires=setup_reqs,
6664
extras_require=extras_reqs,
6765
install_requires=install_reqs,
6866
include_package_data=True,

0 commit comments

Comments
 (0)