Skip to content

Commit

Permalink
v11.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 15, 2024
1 parent a19a2e3 commit 4f55f4d
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
linting:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -25,7 +25,7 @@ jobs:

validate_migrations:
name: Validate migrations
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -41,7 +41,7 @@ jobs:

tests:
name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', ]
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

coverage:
name: Coverage
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: tests
steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 11 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,14 @@ repos:
charts/.*
|.*\.py
)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: no-commit-to-branch
args:
[
"--pattern",
'^^(?!(?:feature|hotfix|bugfix|refactor|maintenance)/[\w\d\-_#]+).*$',
]
stages: [ pre-commit ]
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-24.04
tools:
python: "3.12"

Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**11.5.4** (2024-11-15)
* Internal updates via `ambient-package-update`

**11.5.3** (2024-11-12)
* Fixed bug leading to non-working system checks in date-time and related name checks

Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets."""

__version__ = "11.5.3"
__version__ = "11.5.4"

0 comments on commit 4f55f4d

Please sign in to comment.