Skip to content

Commit 67711bc

Browse files
committed
feat: update Python version to 3.9+, update CI Node.js version to 20
1 parent 86185fa commit 67711bc

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/build.yml

+2-2
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,7 +78,7 @@ 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

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Databases Casbin Adapter
2-
====
32

43
[![GitHub Actions](https://github.com/pycasbin/casbin-databases-adapter/workflows/build/badge.svg?branch=master)](https://github.com/pycasbin/casbin-databases-adapter/actions)
54
[![Coverage Status](https://coveralls.io/repos/github/pycasbin/casbin-databases-adapter/badge.svg?branch=master)](https://coveralls.io/github/pycasbin/casbin-databases-adapter?branch=master)

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,10 @@
3838
python_requires=">=3.3",
3939
license="Apache 2.0",
4040
classifiers=[
41-
"Programming Language :: Python :: 3.5",
42-
"Programming Language :: Python :: 3.6",
43-
"Programming Language :: Python :: 3.7",
44-
"Programming Language :: Python :: 3.8",
4541
"Programming Language :: Python :: 3.9",
42+
"Programming Language :: Python :: 3.10",
43+
"Programming Language :: Python :: 3.11",
44+
"Programming Language :: Python :: 3.12",
4645
"License :: OSI Approved :: Apache Software License",
4746
"Operating System :: OS Independent",
4847
],

0 commit comments

Comments
 (0)