1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-29 14:42:42 +00:00

5 Commits

Author SHA1 Message Date
Bastian Venthur
b7e0baa331 Added Python 3.14 compatibility 2025-10-10 08:24:29 +02:00
Bastian Venthur
d0c246a6c3 Merge pull request #300 from venthur/dependabot/github_actions/actions/setup-python-6
Some checks failed
/ test (ubuntu-latest, 3.10) (push) Failing after 1m12s
/ mypy (push) Failing after 1m9s
/ test-release (push) Failing after 1m21s
/ test (ubuntu-latest, 3.11) (push) Failing after 1m14s
/ test (ubuntu-latest, 3.12) (push) Failing after 1m19s
/ test (ubuntu-latest, 3.13) (push) Failing after 1m24s
/ lint (push) Failing after 1m19s
/ test (macos-latest, 3.10) (push) Has been cancelled
/ test (macos-latest, 3.11) (push) Has been cancelled
/ test (macos-latest, 3.12) (push) Has been cancelled
/ test (macos-latest, 3.13) (push) Has been cancelled
/ test (windows-latest, 3.10) (push) Has been cancelled
/ test (windows-latest, 3.11) (push) Has been cancelled
/ test (windows-latest, 3.12) (push) Has been cancelled
/ test (windows-latest, 3.13) (push) Has been cancelled
Bump actions/setup-python from 5 to 6
2025-09-11 10:06:27 +02:00
dependabot[bot]
d6e251db38 Bump actions/setup-python from 5 to 6
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-09-11 08:02:43 +00:00
Bastian Venthur
5f65bace1a Merge pull request #299 from venthur/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2025-09-11 10:01:50 +02:00
dependabot[bot]
1058292e3f Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-11 19:54:13 +00:00
2 changed files with 10 additions and 8 deletions

View File

@@ -18,10 +18,11 @@ jobs:
- "3.11" - "3.11"
- "3.12" - "3.12"
- "3.13" - "3.13"
- "3.14"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/setup-python@v5 - uses: actions/setup-python@v6
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
@@ -34,8 +35,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/setup-python@v5 - uses: actions/setup-python@v6
with: with:
python-version: "3.x" python-version: "3.x"
@@ -48,8 +49,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/setup-python@v5 - uses: actions/setup-python@v6
with: with:
python-version: "3.x" python-version: "3.x"
@@ -63,8 +64,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- uses: actions/setup-python@v5 - uses: actions/setup-python@v6
with: with:
python-version: "3.x" python-version: "3.x"

View File

@@ -2,6 +2,7 @@
## [unreleased] -- ## [unreleased] --
* Added Python 3.14 compatibility
* Removed requirements.txt and requirements-dev.txt * Removed requirements.txt and requirements-dev.txt
## [2.3.3] -- 2025-04-27 ## [2.3.3] -- 2025-04-27