Skip to content

Commit ddf8088

Browse files
committed
feat: upgrade CI Node.js version to 20
1 parent d7a3b80 commit ddf8088

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: .github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.9', '3.10', '3.11']
14+
python-version: ['3.10', '3.11', '3.12']
1515
os: [ubuntu-latest]
1616

1717
steps:
@@ -81,15 +81,15 @@ jobs:
8181
- name: Setup Node.js
8282
uses: actions/setup-node@v2
8383
with:
84-
node-version: '18'
84+
node-version: '20'
8585

8686
- name: Setup
8787
run: npm install -g semantic-release @semantic-release/github @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/git @semantic-release/release-notes-generator semantic-release-pypi
8888

8989
- name: Set up python
9090
uses: actions/setup-python@v2
9191
with:
92-
python-version: '3.10'
92+
python-version: '3.12'
9393

9494
- name: Install setuptools
9595
run: python -m pip install --upgrade setuptools wheel twine

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
python_requires=">=3.8",
3939
license="Apache 2.0",
4040
classifiers=[
41-
"Programming Language :: Python :: 3.8",
4241
"Programming Language :: Python :: 3.9",
4342
"Programming Language :: Python :: 3.10",
4443
"Programming Language :: Python :: 3.11",
44+
"Programming Language :: Python :: 3.12",
4545
"License :: OSI Approved :: Apache Software License",
4646
"Operating System :: OS Independent",
4747
],

0 commit comments

Comments
 (0)