Skip to content

Commit

Permalink
Scheduled biweekly dependency update for week 35 (#1250)
Browse files Browse the repository at this point in the history
* Update flake8-bugbear from 24.4.26 to 24.8.19

* Update pyyaml from 6.0.1 to 6.0.2

* Update factory-boy from 3.3.0 to 3.3.1

* Update faker from 26.1.0 to 28.1.0

* Update syrupy from 4.6.1 to 4.7.1

* Updated to Python 3.10 for checks

* As for sphinx-rtd-theme Sphinx needs to be lower than 8

---------

Co-authored-by: Oliver Sauder <[email protected]>
  • Loading branch information
pyup-bot and sliverc authored Sep 10, 2024
1 parent e745d6b commit 5123a26
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
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:/django-polymorphic/django-polymorphic/pull/541
django-polymorphic@git+https:/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

0 comments on commit 5123a26

Please sign in to comment.