Skip to content

Commit aeb09a5

Browse files
committed
Test python 3.14
Signed-off-by: Daniel Mizyrycki <mzdaniel@glidelink.net>
1 parent 995596c commit aeb09a5

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
test_prod:
1111
if: github.ref_type == 'tag'
1212
runs-on: ubuntu-latest
13-
strategy: {matrix: {name: ['3.11', '3.12', '3.13', '3.14.0-rc.3']}}
13+
strategy: {matrix: {name: ['3.11', '3.12', '3.13', '3.14']}}
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v5

.github/workflows/testpypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v5
1212
with: {ref: dev, persist-credentials: false}
1313
- uses: actions/setup-python@v4
14-
with: {python-version: '3.14.0-rc.3'}
14+
with: {python-version: '3.14'}
1515

1616
- name: Install test dependencies
1717
run: pip install rust-just

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
["0.2.1rc5"]
2+
notes = """
3+
loadconfig 0.2.1rc5 (2025-10-07)
4+
================================
5+
6+
* Test python 3.14"""
7+
8+
19
["0.2.1rc4"]
210
notes = """
311
loadconfig 0.2.1rc4 (2025-10-05)

loadconfig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
__all__ = ['Config', 'Odict', '__version__']
44

55
__author__ = 'Daniel Mizyrycki'
6-
__version__ = '0.2.1rc4'
6+
__version__ = '0.2.1rc5'
77

88
from itertools import count
99
from .lib import (Odict, delregex, dfl, findregex, flatten,

0 commit comments

Comments
 (0)