Skip to content

Commit 3a5a0e6

Browse files
committed
Fix
1 parent 51f1ce7 commit 3a5a0e6

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/doc-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9]
11+
python-version: [3.11]
1212
max-parallel: 4
1313
runs-on: ${{ matrix.os }}
1414

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212

13-
- name: Set up Python 3.9
13+
- name: Set up Python 3.11
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.9
16+
python-version: 3.11
1717

1818
- name: Install Poetry
1919
uses: snok/install-poetry@v1

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- name: Build and publish to pypi
1212
uses: JRubics/[email protected]
1313
with:
14-
python_version: "3.9"
14+
python_version: "3.11"
1515
pypi_token: ${{ secrets.PYPI_TOKEN }}
1616

1717

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
os: [ubuntu-latest]
11-
python-version: [3.9, '3.10']
11+
python-version: ["3.11", "3.12"]
1212
max-parallel: 4
1313
runs-on: ${{ matrix.os }}
1414

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
sys.path.insert(0, os.path.abspath('../'))
1313

14-
import toml
14+
import tomllib
1515

1616
# -- Project information -----------------------------------------------------
1717

18-
with open('../pyproject.toml', 'r') as pyproject_file:
19-
pyproject = toml.load(pyproject_file)
18+
with open('../pyproject.toml', 'rb') as pyproject_file:
19+
pyproject = tomllib.load(pyproject_file)
2020

2121
authors = ""
2222
for author in pyproject["tool"]["poetry"]["authors"]:

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'poetry.masonry.api'
44

55
[tool.poetry]
66
name = 'CfgNet'
7-
version = '1.0.4'
7+
version = '1.0.5'
88
description = 'A Framework for Tracking Configuration Dependencies Across a Software Project'
99
authors = [
1010
'Sebastian Simon <[email protected]>',
@@ -24,7 +24,7 @@ packages = [
2424
]
2525

2626
[tool.poetry.dependencies]
27-
python = '>=3.8,<3.12'
27+
python = '>=3.11,<3.12'
2828
mypy = "1.2"
2929
lxml = "^4.6.3"
3030
GitPython = "^3.1.24"

0 commit comments

Comments
 (0)