Skip to content

Commit 4beb0ba

Browse files
committed
feat: upgrade CI Node.js version to 20
1 parent f7b28b8 commit 4beb0ba

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.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, macOS-latest, windows-latest]
1616

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

8989
- name: Setup
9090
run: npm install
9191

9292
- name: Set up python
9393
uses: actions/setup-python@v4
9494
with:
95-
python-version: 3.11
95+
python-version: '3.12'
9696

9797
- name: Release
9898
env:

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Django ORM Adapter for PyCasbin
22

3-
[![Build Status](https://www.travis-ci.org/pycasbin/django-orm-adapter.svg?branch=master)](https://www.travis-ci.org/pycasbin/django-orm-adapter)
3+
[![GitHub Action](https://github.com/pycasbin/django-orm-adapter/workflows/build/badge.svg?branch=master)](https://github.com/pycasbin/django-orm-adapter/actions)
44
[![Coverage Status](https://coveralls.io/repos/github/pycasbin/django-orm-adapter/badge.svg)](https://coveralls.io/github/pycasbin/django-orm-adapter)
55
[![Version](https://img.shields.io/pypi/v/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/)
66
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/)
77
[![Pyversions](https://img.shields.io/pypi/pyversions/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/)
88
[![Download](https://img.shields.io/pypi/dm/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/)
9-
[![License](https://img.shields.io/pypi/l/casbin-django-orm-adapter.svg)](https://pypi.org/project/casbin-django-orm-adapter/)
9+
[![Discord](https://img.shields.io/discord/1022748306096537660?logo=discord&label=discord&color=5865F2)](https://discord.gg/S5UjpzGZjN)
1010

1111
Django ORM Adapter is the [Django](https://www.djangoproject.com/)'s [ORM](https://docs.djangoproject.com/en/3.0/ref/databases/) adapter for [PyCasbin](https://github.com/pycasbin/django-orm-adapter). With this library, Casbin can load policy from Django ORM supported database or save policy to it.
1212

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,10 @@ dynamic = ["dependencies"]
2020
requires-python = ">=3.7"
2121
license = {text = "Apache 2.0"}
2222
classifiers = [
23-
"Programming Language :: Python :: 3.7",
24-
"Programming Language :: Python :: 3.8",
2523
"Programming Language :: Python :: 3.9",
2624
"Programming Language :: Python :: 3.10",
2725
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
2827
"License :: OSI Approved :: Apache Software License",
2928
"Operating System :: OS Independent",
3029
]

0 commit comments

Comments
 (0)