Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

Commit cd7bff5

Browse files
committed
fix: add optional deps to pyproject
1 parent b8193bf commit cd7bff5

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/tests_mamba.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
shell: bash -el {0}
3535
run: |
3636
conda install --yes --file=requirements.txt
37-
conda install --yes --file=requirements-optional.txt
37+
conda install --yes --file=requirements-mamba.txt
3838
conda install --yes pytest flaky pip python-build setuptools_scm>=7 setuptools>=45 toml
3939
pip install -e .
4040

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ authors = [
1212
{name = "conda-forge-tick development team", email = "condaforge@gmail.com"},
1313
]
1414
description = "A mamba-based package to check if a conda-forge feedstock is solvable."
15-
dynamic = ["version", "dependencies"]
15+
dynamic = ["version", "dependencies", "optional-dependencies"]
1616
license = {file = "LICENSE"}
1717
readme = "README.md"
1818

@@ -21,6 +21,7 @@ home = "https://github.com/regro/conda-forge-feedstock-check-solvable"
2121

2222
[tool.setuptools.dynamic]
2323
dependencies = {file = ["requirements.txt"]}
24+
optional-dependencies.mamba = { file = ["requirements-mamba.txt"] }
2425

2526
[tool.setuptools.packages.find]
2627
exclude = ['tests*']

0 commit comments

Comments
 (0)