Skip to content

Commit

Permalink
Update the CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Sep 16, 2024
1 parent 1252e93 commit 9166406
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Fixed and simplified the Google Consent Management integration.
- Added SRF support to the embedding functionality.
- Updated the pre-commit hooks, switched to biome.
- Pruned Python 3.9 and Django 4.1 from the CI matrix.

## 1.5 (2024-05-05)

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ raises some questions because loading those scripts may also be seen as
tracking already. It is certainly safer to implement a cookie control panel
locally. It would be boring to start from scratch on each site.

This guide explains how to use `feincms3-cookiecontrol <https://github.com/feinheit/feincms3-cookiecontrol/>`__.
This guide explains how to use `feincms3-cookiecontrol <https://github.com/feincms/feincms3-cookiecontrol/>`__.

Installation
~~~~~~~~~~~~
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = { text = "BSD-3-Clause" }
authors = [
{ name = "York Schickl", email = "[email protected]" },
]
requires-python = ">=3.9"
requires-python = ">=3.10"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
Expand All @@ -20,12 +20,12 @@ classifiers = [
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -43,7 +43,7 @@ optional-dependencies.tests = [
"coverage",
"requests",
]
urls.Homepage = "https://github.com/feinheit/feincms3-cookiecontrol/"
urls.Homepage = "https://github.com/feincms/feincms3-cookiecontrol/"

[tool.hatch.build]
include = [ "feincms3_cookiecontrol/" ]
Expand All @@ -52,7 +52,7 @@ include = [ "feincms3_cookiecontrol/" ]
path = "feincms3_cookiecontrol/__init__.py"

[tool.ruff]
target-version = "py39"
target-version = "py310"

fix = true
show-fixes = true
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
py{39,310}-dj{32,41,42}
py{310,311}-dj{32,41,42,50,main}
py{312}-dj{42,50,main}
py{310}-dj{32,42}
py{310,311}-dj{32,42,50,51,main}
py{312}-dj{42,50,51,main}

[testenv]
usedevelop = true
Expand All @@ -12,9 +12,9 @@ commands =
coverage report -m
deps =
dj32: Django>=3.2,<4.0
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz

# [testenv:docs]
Expand Down

0 comments on commit 9166406

Please sign in to comment.