Skip to content

Commit 4354a2d

Browse files
authored
v3.2.6 (#13)
1 parent 828202b commit 4354a2d

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
linting:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- uses: actions/checkout@v4
1414

@@ -26,7 +26,7 @@ jobs:
2626

2727
tests:
2828
name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }}
29-
runs-on: ubuntu-22.04
29+
runs-on: ubuntu-24.04
3030
strategy:
3131
matrix:
3232
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', ]
@@ -60,7 +60,7 @@ jobs:
6060

6161
coverage:
6262
name: Coverage
63-
runs-on: ubuntu-22.04
63+
runs-on: ubuntu-24.04
6464
needs: tests
6565
steps:
6666
- uses: actions/checkout@v4

.pre-commit-config.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,14 @@ repos:
4343
charts/.*
4444
|.*\.py
4545
)$
46+
47+
- repo: https://github.com/pre-commit/pre-commit-hooks
48+
rev: v5.0.0
49+
hooks:
50+
- id: no-commit-to-branch
51+
args:
52+
[
53+
"--pattern",
54+
'^^(?!(?:feature|hotfix|bugfix|refactor|maintenance)/[\w\d\-_#]+).*$',
55+
]
56+
stages: [ pre-commit ]

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version: 2
77

88
# Set the OS, Python version and other tools you might need
99
build:
10-
os: ubuntu-22.04
10+
os: ubuntu-24.04
1111
tools:
1212
python: "3.12"
1313

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
* *3.2.6* (2024-11-15)
4+
* Internal updates via `ambient-package-update`
5+
36
* *3.2.5* (2024-10-14)
47
* Added Python 3.13 support
58
* Added Djade linter to pre-commit
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Add simple dynamic interaction to the otherwise static django admin."""
22

3-
__version__ = "3.2.5"
3+
__version__ = "3.2.6"

0 commit comments

Comments
 (0)