Skip to content

Commit

Permalink
Pin max version of setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
peytondmurray committed Nov 12, 2024
1 parent 97cdadc commit c226752
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions conda-store-server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ dependencies = [
"flower",
"itsdangerous",
"jinja2",
"packaging>=24",
"pyjwt",
"psycopg2-binary",
"pymysql",
Expand All @@ -66,7 +65,10 @@ dependencies = [
"requests",
"pydantic >=1.10.16,<2.0a0",
"python-multipart",
"setuptools>74",
# setuptools>=70 uses local version of packaging (and other deps) without
# pinning them; conda-lock depends on this, but also doesn't pin the setuptools
# version. See https://github.com/pypa/setuptools/issues/4478 for details
"setuptools<70",
"sqlalchemy<2.0a0",
"traitlets",
"uvicorn",
Expand Down

0 comments on commit c226752

Please sign in to comment.