From 97051ab5fb093b31c636923951b47cd328785e19 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:11 +0400 Subject: [PATCH 1/8] Update flake8-bugbear from 24.4.26 to 24.8.19 --- requirements/requirements-codestyle.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-codestyle.txt b/requirements/requirements-codestyle.txt index d826f918..fcbf26ec 100644 --- a/requirements/requirements-codestyle.txt +++ b/requirements/requirements-codestyle.txt @@ -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 From 39853c897fc557ada158a9bf88193afc1536d862 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:11 +0400 Subject: [PATCH 2/8] Update sphinx from 7.4.7 to 8.0.2 --- requirements/requirements-documentation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-documentation.txt b/requirements/requirements-documentation.txt index ea5200ab..74725d30 100644 --- a/requirements/requirements-documentation.txt +++ b/requirements/requirements-documentation.txt @@ -1,3 +1,3 @@ recommonmark==0.7.1 -Sphinx==7.4.7 +Sphinx==8.0.2 sphinx_rtd_theme==2.0.0 From 7838da5a1399677fd22cd5598702e5ee41d2a846 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:12 +0400 Subject: [PATCH 3/8] Update pyyaml from 6.0.1 to 6.0.2 --- requirements/requirements-optionals.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-optionals.txt b/requirements/requirements-optionals.txt index df0ef24d..589636e6 100644 --- a/requirements/requirements-optionals.txt +++ b/requirements/requirements-optionals.txt @@ -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 From d1b07feeef9d28a1b48593f23be808e59cf82114 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:12 +0400 Subject: [PATCH 4/8] Update factory-boy from 3.3.0 to 3.3.1 --- requirements/requirements-testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-testing.txt b/requirements/requirements-testing.txt index 9c7ebb66..af252c48 100644 --- a/requirements/requirements-testing.txt +++ b/requirements/requirements-testing.txt @@ -1,4 +1,4 @@ -factory-boy==3.3.0 +factory-boy==3.3.1 Faker==26.1.0 pytest==8.3.2 pytest-cov==5.0.0 From ffb2ea1f986b0773e993851cc416fc7eb37b16e5 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:13 +0400 Subject: [PATCH 5/8] Update faker from 26.1.0 to 28.1.0 --- requirements/requirements-testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-testing.txt b/requirements/requirements-testing.txt index af252c48..e21afd67 100644 --- a/requirements/requirements-testing.txt +++ b/requirements/requirements-testing.txt @@ -1,5 +1,5 @@ factory-boy==3.3.1 -Faker==26.1.0 +Faker==28.1.0 pytest==8.3.2 pytest-cov==5.0.0 pytest-django==4.8.0 From 3198d9286eeaf69693ebfab0e49e54a8291525b9 Mon Sep 17 00:00:00 2001 From: pyup-bot Date: Mon, 2 Sep 2024 18:06:14 +0400 Subject: [PATCH 6/8] Update syrupy from 4.6.1 to 4.7.1 --- requirements/requirements-testing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-testing.txt b/requirements/requirements-testing.txt index e21afd67..b95d04d8 100644 --- a/requirements/requirements-testing.txt +++ b/requirements/requirements-testing.txt @@ -4,4 +4,4 @@ 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 From 09c4d3e138076e86af7225aab43957ad9024c525 Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Tue, 10 Sep 2024 22:28:44 +0400 Subject: [PATCH 7/8] Updated to Python 3.10 for checks --- .github/workflows/tests.yml | 4 ++-- tox.ini | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2f966adc..622e45b9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/tox.ini b/tox.ini index 0f65b588..2b89dc40 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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 From d0d1113af9c75783b8e1e11a2b595cb072b73c6a Mon Sep 17 00:00:00 2001 From: Oliver Sauder Date: Tue, 10 Sep 2024 22:39:29 +0400 Subject: [PATCH 8/8] As for sphinx-rtd-theme Sphinx needs to be lower than 8 --- requirements/requirements-documentation.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/requirements-documentation.txt b/requirements/requirements-documentation.txt index 74725d30..ea5200ab 100644 --- a/requirements/requirements-documentation.txt +++ b/requirements/requirements-documentation.txt @@ -1,3 +1,3 @@ recommonmark==0.7.1 -Sphinx==8.0.2 +Sphinx==7.4.7 sphinx_rtd_theme==2.0.0 pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy