Skip to content

Commit

Permalink
work around for some breaking change in setuptools 66.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
karlicoss committed Jan 16, 2023
1 parent 2314f58 commit 8f9467b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ def main() -> None:
},
# NOTE: there is some issue on circleci windows when running pip3 install --user -e . because of setuptools_scm?
# some CERTIFICATE_VERIFY_FAILED stuff. comment this temporary if you're debugging
setup_requires=['setuptools_scm'],
setup_requires=[
'setuptools<66.0.0', # see https://github.com/pypa/setuptools/issues/3772#issuecomment-1384671296
'setuptools_scm',
],

# otherwise mypy won't work
# https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages
Expand Down

0 comments on commit 8f9467b

Please sign in to comment.