Skip to content

Commit ada7e99

Browse files
committed
feat: upgrade CI Node.js version to 20
1 parent 29e8ee9 commit ada7e99

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
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]
1616

1717
steps:
@@ -81,15 +81,15 @@ jobs:
8181
- name: Setup Node.js
8282
uses: actions/setup-node@v2
8383
with:
84-
node-version: '18'
84+
node-version: '20'
8585

8686
- name: Setup
8787
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
8888

8989
- name: Set up python
9090
uses: actions/setup-python@v2
9191
with:
92-
python-version: '3.10'
92+
python-version: '3.12'
9393

9494
- name: Install setuptools
9595
run: python -m pip install --upgrade setuptools wheel twine

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# rabbitmq-watcher
22

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

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,10 @@
3636
python_requires=">=3.5",
3737
license="Apache 2.0",
3838
classifiers=[
39-
"Programming Language :: Python :: 3.5",
40-
"Programming Language :: Python :: 3.6",
41-
"Programming Language :: Python :: 3.7",
42-
"Programming Language :: Python :: 3.8",
4339
"Programming Language :: Python :: 3.9",
40+
"Programming Language :: Python :: 3.10",
41+
"Programming Language :: Python :: 3.11",
42+
"Programming Language :: Python :: 3.12",
4443
"License :: OSI Approved :: Apache Software License",
4544
"Operating System :: OS Independent",
4645
],

0 commit comments

Comments
 (0)