Skip to content

Commit 76b5bb9

Browse files
committed
Update Python Test Versions
Based on https://devguide.python.org/versions/#supported-versions Fixes #48 Remove 3.7 (EOL 2023-06-27) Add 3.10, 3.11, 3.12
1 parent eee2790 commit 76b5bb9

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
python: [3.7, 3.8, 3.9]
13+
python: [3.8, 3.9, 3.10, 3.11, 3.12]
1414
include:
1515
- os: macos-latest
16-
python: 3.9
16+
python: 3.12
1717
- os: windows-latest
18-
python: 3.9
18+
python: 3.12
1919

2020
runs-on: ${{ matrix.os }}
2121

@@ -42,10 +42,10 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- uses: actions/checkout@v2
45-
- name: Set up Python 3.9
45+
- name: Set up Python 3.12
4646
uses: actions/setup-python@v1
4747
with:
48-
python: 3.9
48+
python: 3.12
4949
- name: Install dependencies
5050
run: |
5151
python -m pip install --upgrade pip

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RELAX NG Compact to RELAX NG conversion library
99
Converts RELAX NG schemata in Compact syntax (`rnc`) to the equivalent schema
1010
in the XML-based default RELAX NG syntax. Dependencies:
1111

12-
- Python 3.x (tested with 3.7, 3.8, 3.9)
12+
- Python 3.x (tested with 3.8, 3.9, 3.10, 3.11, 3.12)
1313
- `rply`_
1414

1515
Feedback welcome on `GitHub`_. Please consider funding continued maintenance of this

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@
1616
'License :: OSI Approved :: MIT License',
1717
'Topic :: Text Processing :: Markup :: XML',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.7',
2019
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
21+
'Programming Language :: Python :: 3.10',
22+
'Programming Language :: Python :: 3.11',
23+
'Programming Language :: Python :: 3.12',
2224
],
2325
packages=['rnc2rng'],
2426
entry_points={

0 commit comments

Comments
 (0)