Skip to content

Commit 287ea64

Browse files
committed
Support Python version 3.11
Update packages Update CHANGES.md Bump version to 0.0.17
1 parent 8afc62d commit 287ea64

File tree

5 files changed

+142
-131
lines changed

5 files changed

+142
-131
lines changed

.github/workflows/branch.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
python-version: ['3.9']
9+
python-version: ['3.9', '3.10', '3.11']
1010
poetry-version: ['1.4.2']
1111
os: [ubuntu-latest]
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: actions/setup-python@v3
15+
- uses: actions/setup-python@v4
1616
with:
1717
python-version: ${{ matrix.python-version }}
1818
- name: Run image
19-
uses: abatilo/actions-poetry@v2.1.4
19+
uses: abatilo/actions-poetry@v2
2020
with:
2121
poetry-version: ${{ matrix.poetry-version }}
2222
- name: Install dependencies
2323
run: poetry install
2424
- name: Run tests
2525
run: poetry run pytest --cov=./ --cov-report=xml
2626
- name: Upload coverage to Codecov
27-
uses: codecov/codecov-action@v2
27+
uses: codecov/codecov-action@v3
2828
code-quality:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ['3.9']
32+
python-version: ['3.9', '3.10', '3.11']
3333
poetry-version: ['1.4.2']
3434
os: [ubuntu-latest]
3535
runs-on: ${{ matrix.os }}
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Run image
42-
uses: abatilo/actions-poetry@v2.1.4
42+
uses: abatilo/actions-poetry@v2
4343
with:
4444
poetry-version: ${{ matrix.poetry-version }}
4545
- name: Install dependencies
@@ -57,4 +57,4 @@ jobs:
5757
- name: Run safety
5858
run: poetry run safety check
5959
- name: Check for acceptable licenses
60-
run: poetry run pip-licenses --allow-only="MIT License;BSD License;Python Software Foundation License;Apache Software License;Mozilla Public License 2.0 (MPL 2.0);GNU Library or Lesser General Public License (LGPL)"
60+
run: poetry run pip-licenses --allow-only="MIT License;BSD License;Python Software Foundation License;Apache Software License;Mozilla Public License 2.0 (MPL 2.0)"

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ['3.9']
12+
python-version: ['3.11']
1313
poetry-version: ['1.4.2']
1414
os: [ubuntu-latest]
1515
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v3
18-
- uses: actions/setup-python@v3
18+
- uses: actions/setup-python@v4
1919
with:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Run image
22-
uses: abatilo/actions-poetry@v2.1.4
22+
uses: abatilo/actions-poetry@v2
2323
with:
2424
poetry-version: ${{ matrix.poetry-version }}
2525
- name: Publish

CHANGES.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Python KOF Parser Package
22

3+
## Version 0.0.17
4+
5+
_2023-05-16
6+
7+
Change
8+
9+
- Support Python version 3.11.
10+
- Update packages.
11+
12+
313
## Version 0.0.16
414

515
_2023-04-28_

0 commit comments

Comments
 (0)