Skip to content

Commit 086c74c

Browse files
committed
feat: upgrade CI Node.js version to 20
1 parent b55344c commit 086c74c

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
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:
@@ -78,15 +78,15 @@ jobs:
7878
- name: Setup Node.js
7979
uses: actions/setup-node@v2
8080
with:
81-
node-version: '18'
81+
node-version: '20'
8282

8383
- name: Setup
8484
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
8585

8686
- name: Set up python
8787
uses: actions/setup-python@v2
8888
with:
89-
python-version: '3.10'
89+
python-version: '3.12'
9090

9191
- name: Install setuptools
9292
run: python -m pip install --upgrade setuptools wheel twine

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
async-sqlalchemy-adapter
22
====
3-
Async SQLAlchemy Adapter for PyCasbin<br>
3+
44
[![GitHub Actions](https://github.com/pycasbin/async-sqlalchemy-adapter/workflows/build/badge.svg?branch=master)](https://github.com/pycasbin/async-sqlalchemy-adapter/actions)
55
[![Coverage Status](https://coveralls.io/repos/github/pycasbin/async-sqlalchemy-adapter/badge.svg)](https://coveralls.io/github/pycasbin/async-sqlalchemy-adapter)
66
[![Version](https://img.shields.io/pypi/v/casbin_async_sqlalchemy_adapter.svg)](https://pypi.org/project/casbin_async_sqlalchemy_adapter/)

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,10 @@
5151
python_requires=">=3.7",
5252
license="Apache 2.0",
5353
classifiers=[
54-
"Programming Language :: Python :: 3.7",
55-
"Programming Language :: Python :: 3.8",
5654
"Programming Language :: Python :: 3.9",
5755
"Programming Language :: Python :: 3.10",
5856
"Programming Language :: Python :: 3.11",
57+
"Programming Language :: Python :: 3.12",
5958
"License :: OSI Approved :: Apache Software License",
6059
"Operating System :: OS Independent",
6160
],

0 commit comments

Comments
 (0)