Skip to content

Commit

Permalink
Comment out step that is breaking?
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronreidsmith committed Sep 25, 2024
1 parent 4fdb4df commit 9ac0d7f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 20 deletions.
1 change: 0 additions & 1 deletion build_tools/build_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,3 @@ twine>=1.13.0
readme_renderer
matplotlib
urllib3
importlib-metadata<8.3.0
38 changes: 19 additions & 19 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,25 +72,25 @@
'sdist,'
}

if SETUPTOOLS_COMMANDS.intersection(sys.argv):
# we don't use setuptools, but if we don't import it, the "develop"
# option for setup.py is invalid.
import setuptools # noqa

print('Adding extra setuptools args')
extra_setuptools_args = dict(
zip_safe=False, # the package can run out of an .egg file
include_package_data=True,
data_files=[
('pmdarima', ['pmdarima/VERSION']),
],
# scikit does this:
# extras_require={
# 'alldeps': REQUIREMENTS
# }
)
else:
extra_setuptools_args = dict()
# if SETUPTOOLS_COMMANDS.intersection(sys.argv):
# # we don't use setuptools, but if we don't import it, the "develop"
# # option for setup.py is invalid.
# import setuptools # noqa
#
# print('Adding extra setuptools args')
# extra_setuptools_args = dict(
# zip_safe=False, # the package can run out of an .egg file
# include_package_data=True,
# data_files=[
# ('pmdarima', ['pmdarima/VERSION']),
# ],
# # scikit does this:
# # extras_require={
# # 'alldeps': REQUIREMENTS
# # }
# )
# else:
# extra_setuptools_args = dict()


# Custom clean command to remove build artifacts -- adopted from sklearn
Expand Down

0 comments on commit 9ac0d7f

Please sign in to comment.