Skip to content

Commit 804f4c6

Browse files
committed
feat(dependencies): add python 3.12 support
1 parent ee938ca commit 804f4c6

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.8", "pypy-3.9" ]
13+
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8", "pypy-3.9", "pypy-3.10" ]
1414
regex: [ "1", "0" ]
1515

1616
steps:
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121

2222
- name: Checkout
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Git User config
2626
run: |
@@ -54,7 +54,7 @@ jobs:
5454
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
5555
runs-on: ubuntu-latest
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
with:
5959
fetch-depth: 0
6060
- uses: wagoid/commitlint-github-action@v5
@@ -68,7 +68,7 @@ jobs:
6868
strategy:
6969
fail-fast: false
7070
matrix:
71-
python-version: [ 3.11 ]
71+
python-version: [ 3.12 ]
7272

7373
steps:
7474
- name: Setup python ${{ matrix.python-version }}
@@ -77,7 +77,7 @@ jobs:
7777
python-version: ${{ matrix.python-version }}
7878

7979
- name: Checkout
80-
uses: actions/checkout@v3
80+
uses: actions/checkout@v4
8181
with:
8282
fetch-depth: 0
8383

@@ -93,7 +93,7 @@ jobs:
9393
run: pip install python-semantic-release
9494

9595
- name: Publish release
96-
run: semantic-release -v DEBUG publish
96+
run: semantic-release publish -v DEBUG
9797
env:
9898
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9999
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,py310,pypy3
2+
envlist = py37,py38,py39,py310,py311,py312,pypy3.8,pypy3.9,pypy3.10
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)