Skip to content

Commit d09334c

Browse files
committed
Trying to fix package errors in CI with another selective require
1 parent 58b2810 commit d09334c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
version = "2.1"
1818

1919
reqs = []
20+
setup_reqs = []
2021

2122
# ReadTheDocs and AppVeyor will break if we do not handle the separately
2223
is_rtd = False
@@ -39,6 +40,8 @@
3940
"path",
4041
]
4142

43+
setup_reqs = ["setuptools_scm"]
44+
4245
setup(
4346
name="cadquery",
4447
# version=version,
@@ -51,7 +54,7 @@
5154
long_description=open("README.md").read(),
5255
packages=find_packages(exclude=("tests",)),
5356
python_requires=">=3.8,<3.11",
54-
setup_requires=["setuptools_scm"],
57+
setup_requires=setup_reqs,
5558
install_requires=reqs,
5659
extras_require={
5760
"dev": ["docutils", "ipython", "pytest", "black==19.10b0", "click==8.0.4",],

0 commit comments

Comments
 (0)