Skip to content

Commit d1c545b

Browse files
yet again undeclared dependencies
1 parent ae9da62 commit d1c545b

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install -e '.[all]' types-requests
24+
pip install -e '.[lint]' types-requests
2525
- name: mypy
2626
run: |
2727
mypy pymatgen

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip
29-
pip install -e '.[all]'
29+
pip install -e '.[dev,tests]'
3030
- name: pytest
3131
run: |
3232
pytest -n auto tests

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ requires-python = '>=3.11'
4343
dev = ["pre-commit>=2.12.1"]
4444
#docs = ["jupyter-book>=0.13.1",]
4545

46-
tests = ["pytest>=8.4.2", "pytest-cov>=7.0.0", "pytest-xdist>=3.8.0", "types-requests", "mypy","black", "flake8"]
47-
all = ["pymatgen-io-validation[dev,tests]"]
46+
tests = ["pytest>=8.4.2", "pytest-cov>=7.0.0", "pytest-xdist>=3.8.0", "types-requests"]
47+
lint = ["pydocstyle", "mypy", "black", "flake8"]
48+
all = ["pymatgen-io-validation[dev,tests,lint]"]
4849

4950
[tool.setuptools.dynamic]
5051
readme = { file = ["README.md"] }

0 commit comments

Comments
 (0)