Skip to content

Commit

Permalink
Fix conda store server deps (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
soapy1 authored Feb 4, 2025
1 parent f5fef37 commit a6ce878
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conda-store-server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ dependencies = [
"celery",
"fastapi",
"filelock",
"flower",
"itsdangerous",
"jinja2",
"pluggy",
Expand Down Expand Up @@ -94,6 +93,7 @@ dependencies = [
"build",
"docker-compose",
"docker-py<7",
"flower",
"httpx",
"pre-commit",
"pytest",
Expand Down
11 changes: 11 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,12 @@ outputs:
- {{ pin_subpackage('conda-store-server', min_pin='x.x.x', max_pin='x.x.x') }}

test:
requires:
- pip
imports:
- conda_store
commands:
- pip check
- conda-store --help

- name: conda-store-server
Expand Down Expand Up @@ -89,19 +92,27 @@ outputs:
- pyyaml >=6.0.1
- redis-py
- requests
# 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.0,<2.1
- traitlets
- uvicorn
- yarl
- psycopg2
- pymysql
- psycopg2-binary
run_constrained:
- {{ pin_subpackage('conda-store', min_pin='x.x.x', max_pin='x.x.x') }}

test:
requires:
- pip
imports:
- conda_store_server
commands:
- pip check
- conda-store-server --help
- conda-store-worker --help

Expand Down

0 comments on commit a6ce878

Please sign in to comment.