File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed
Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1111 - name : Build and publish to pypi
12121313 with :
14- python_version : " 3.9 "
14+ python_version : " 3.11 "
1515 pypi_token : ${{ secrets.PYPI_TOKEN }}
1616
1717
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1111
1212sys .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" ]:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = 'poetry.masonry.api'
44
55[tool .poetry ]
66name = ' CfgNet'
7- version = ' 1.0.4 '
7+ version = ' 1.0.5 '
88description = ' A Framework for Tracking Configuration Dependencies Across a Software Project'
99authors = [
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'
2828mypy = " 1.2"
2929lxml = " ^4.6.3"
3030GitPython = " ^3.1.24"
You can’t perform that action at this time.
0 commit comments