Skip to content

Commit

Permalink
fix: Pin setuptools to avoid distutils error
Browse files Browse the repository at this point in the history
The newest version of setuptools (65.6.x) breaks httpstan's code---that
has been working for years. This commit adds a version pin that should
be removed once the issue is resolved.
  • Loading branch information
riddell-stan committed Nov 24, 2022
1 parent e5fd2c2 commit 8aebedd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -31,7 +31,7 @@ include = [

[tool.poetry.dependencies]
python = "^3.8"
setuptools = ">=48.0"
setuptools = ">=48.0,<65.6" # NOTE: <65.6 works around a distutils issue, remove pin soon (see PR#627)
aiohttp = "^3.7"
appdirs = "^1.4"
webargs = "^8.0"
Expand Down

0 comments on commit 8aebedd

Please sign in to comment.