forked from conda-incubator/conda-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[BUG] Fix python version compatibility issues affecting tests (conda-…
…incubator#973) Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
aac4f4b
commit 3d6c97f
Showing
9 changed files
with
36 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,22 @@ name = "conda-store-server" | |
description = "Conda Environment Management, Builds, and Serve" | ||
readme = "README.md" | ||
license = "BSD-3-Clause" | ||
requires-python = ">=3.8" | ||
requires-python = ">=3.10,<3.13" | ||
keywords = ["conda"] | ||
authors = [ | ||
{ name = "Christopher Ostrouchov", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Tania Allard", email = "[email protected]" }, | ||
{ name = "Pavithra Eswaramoorthy", email = "[email protected]" }, | ||
{ name = "Peyton Murray", email = "[email protected]" }, | ||
] | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"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", | ||
|
@@ -59,13 +58,17 @@ dependencies = [ | |
"pyjwt", | ||
"psycopg2-binary", | ||
"pymysql", | ||
# pyyaml>5.3.1 is broken with cython>=3 transitive dependency | ||
# pyyaml>5.3.1,<6.0.1 is broken with cython>=3 transitive dependency | ||
# See https://github.com/yaml/pyyaml/issues/724 for details | ||
"pyyaml==5.3.1", | ||
"pyyaml >=6.0.1", | ||
"redis", | ||
"requests", | ||
"pydantic >=1.10.16,<2.0a0", | ||
"python-multipart", | ||
# 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", | ||
|
@@ -192,6 +195,8 @@ ignore = [ | |
"UP007", # non-pep604-annotation | ||
"UP030", # format-literals | ||
"UP031", # printf-string-formatting | ||
"UP035", # deprecated-import | ||
"UP038", # non-pep604-isinstance | ||
] | ||
select = [ | ||
"E", # pycodestyle | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters