Skip to content

Commit ef3b169

Browse files
committed
ci: fix python-version and os version in build.yml
1 parent 9cc6513 commit ef3b169

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
python-version: ['3.7', '3.8', '3.9', '3.10']
15-
os: [ubuntu-18.04, macOS-latest, windows-latest]
14+
python-version: ['3.9', '3.10', '3.11']
15+
os: [ubuntu-latest, macOS-latest, windows-latest]
1616

1717
steps:
1818
- name: Checkout
@@ -84,15 +84,15 @@ jobs:
8484
- name: Setup Node.js
8585
uses: actions/setup-node@v2
8686
with:
87-
node-version: '16'
87+
node-version: '18'
8888

8989
- name: Setup
9090
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
9191

9292
- name: Set up python
9393
uses: actions/setup-python@v2
9494
with:
95-
python-version: 3.8
95+
python-version: '3.10'
9696

9797
- name: Install setuptools
9898
run: python -m pip install --upgrade setuptools wheel twine

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2627
"License :: OSI Approved :: Apache Software License",
2728
"Operating System :: OS Independent",
2829
],

0 commit comments

Comments
 (0)