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 e00d5ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 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
4 changes: 1 addition & 3 deletions conda-store/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "conda-store"
description = "conda-store client"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.8"
requires-python = ">=3.10,<3.13"
keywords = [
"conda",
"dependency management",
Expand All @@ -31,8 +31,6 @@ classifiers = [
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: Local development setup for jupyterlab-conda-store

- Local [clone of your fork](community/contribute/contribute-code#setup-for-local-development) of the [`jupyterlab-conda-store-ui` repository](https://github.com/conda-incubator/jupyterlab-conda-store)
- [NodeJS `> 18`](https://nodejs.org/en/download/) installed on your local computer to build the extension package.
- Python `>= 3.8` (and `pip`)
- Python `>= 3.10` (and `pip`)

## Build and link the extension

Expand Down

0 comments on commit e00d5ba

Please sign in to comment.