Skip to content

Commit 8c31f0d

Browse files
committed
feat: upgrade CI Node.js version to 20
1 parent 10a5fa9 commit 8c31f0d

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/workflows/release.yml

+4-4
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:
@@ -79,7 +79,7 @@ jobs:
7979
- name: Set up Python
8080
uses: actions/setup-python@v2
8181
with:
82-
python-version: 3.9
82+
python-version: '3.12'
8383

8484
- name: Install dependencies
8585
run: |
@@ -116,15 +116,15 @@ jobs:
116116
- name: Setup Node.js
117117
uses: actions/setup-node@v1
118118
with:
119-
node-version: '18'
119+
node-version: '20'
120120

121121
- name: Setup
122122
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
123123

124124
- name: Set up python
125125
uses: actions/setup-python@v2
126126
with:
127-
python-version: 3.9
127+
python-version: '3.12'
128128

129129
- name: Install setuptools
130130
run: python -m pip install --upgrade setuptools wheel twine

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# postgresql-watcher
22

3-
[![tests](https://github.com/pycasbin/postgresql-watcher/actions/workflows/release.yml/badge.svg)](https://github.com/pycasbin/postgresql-watcher/actions/workflows/release.yml)
3+
[![Build Status](https://github.com/pycasbin/postgresql-watcher/actions/workflows/release.yml/badge.svg)](https://github.com/pycasbin/postgresql-watcher/actions/workflows/release.yml)
44
[![Coverage Status](https://coveralls.io/repos/github/pycasbin/postgresql-watcher/badge.svg)](https://coveralls.io/github/pycasbin/postgresql-watcher)
55
[![Version](https://img.shields.io/pypi/v/casbin-postgresql-watcher.svg)](https://pypi.org/project/casbin-postgresql-watcher/)
66
[![PyPI - Wheel](https://img.shields.io/pypi/wheel/casbin-postgresql-watcher.svg)](https://pypi.org/project/casbin-postgresql-watcher/)
7+
[![Pyversions](https://img.shields.io/pypi/pyversions/casbin-postgresql-watcher.svg)](https://pypi.org/project/casbin-postgresql-watcher/)
78
[![Download](https://img.shields.io/pypi/dm/casbin-postgresql-watcher.svg)](https://pypi.org/project/casbin-postgresql-watcher/)
89
[![Discord](https://img.shields.io/discord/1022748306096537660?logo=discord&label=discord&color=5865F2)](https://discord.gg/S5UjpzGZjN)
910

10-
Casbin role watcher to be used for monitoring updates to casbin policies
11+
Casbin watcher based on PostgreSQL for monitoring updates to casbin policies
12+
1113
## Installation
1214
```bash
1315
pip install casbin-postgresql-watcher

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
]
2222
},
2323
classifiers=[
24-
"Programming Language :: Python :: 3.6",
25-
"Programming Language :: Python :: 3.7",
26-
"Programming Language :: Python :: 3.8",
2724
"Programming Language :: Python :: 3.9",
2825
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
2928
"License :: OSI Approved :: Apache Software License",
29+
"Operating System :: OS Independent",
3030
],
3131
)

0 commit comments

Comments
 (0)