Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
tox-env: ["black", "lint", "docs"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-codestyle.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
black==24.8.0
flake8==7.1.1
flake8-bugbear==24.4.26
flake8-bugbear==24.8.19
flake8-isort==6.1.1
isort==5.13.2
2 changes: 1 addition & 1 deletion requirements/requirements-optionals.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ django-filter==24.3
# should be set to pinned version again
# see https://github.com/django-polymorphic/django-polymorphic/pull/541
django-polymorphic@git+https://github.com/django-polymorphic/django-polymorphic@master # pyup: ignore
pyyaml==6.0.1
pyyaml==6.0.2
uritemplate==4.1.1
6 changes: 3 additions & 3 deletions requirements/requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
factory-boy==3.3.0
Faker==26.1.0
factory-boy==3.3.1
Faker==28.1.0
pytest==8.3.2
pytest-cov==5.0.0
pytest-django==4.8.0
pytest-factoryboy==2.7.0
syrupy==4.6.1
syrupy==4.7.1
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ commands =
pytest --cov --no-cov-on-fail --cov-report xml {posargs}

[testenv:black]
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-codestyle.txt
commands = black --check .

[testenv:lint]
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-codestyle.txt
-rrequirements/requirements-testing.txt
Expand All @@ -40,7 +40,7 @@ commands = flake8

[testenv:docs]
# keep in sync with .readthedocs.yml
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-optionals.txt
-rrequirements/requirements-documentation.txt
Expand Down
Loading