Skip to content

Commit c4dbb2a

Browse files
committed
Install dev dependencies with tox
1 parent dfcf13b commit c4dbb2a

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install tox tox-gh-actions pre-commit tox-poetry-dev-dependencies
26+
pip install tox tox-gh-actions pre-commit
2727
2828
- name: Test with tox
2929
run: tox

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Version numbers should follow https://semver.org/spec/v2.0.0.html
1414
not support Python 3.10.
1515
- Specify a minimum `attrs` version of `21.4.0`.
1616

17+
## Fixed
18+
19+
- Fix broken CI by removing `tox-poetry-dev-dependencies`.
20+
1721
## [2.1.0] - 2022-08-01
1822

1923
### Added

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ attrs = "^21.4.0"
4545
django-environ = "^0.4.5"
4646
pytest = "^6.2.2"
4747
pytest-django = "^4.1.0"
48-
tox-poetry-dev-dependencies = "^0.0.9"
4948

5049
[build-system]
5150
requires = ["poetry>=0.12"]

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,13 @@ python =
1717
3.10: py310
1818

1919
[testenv]
20-
poetry_add_dev_dependencies = True
2120
commands =
2221
python -m pytest {posargs:tests} -vv
2322
deps =
23+
django-environ>=0.4.5
24+
pytest>=6.2.2
25+
pytest-django>=4.1.0
26+
2427
django111: django~=1.11.0
2528
django20: django~=2.0.0
2629
django21: django~=2.1.0

0 commit comments

Comments
 (0)