Skip to content

Commit

Permalink
Update Python Test Versions
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jombr committed Apr 15, 2024
1 parent eee2790 commit b54cd06
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python: [3.7, 3.8, 3.9]
python: [3.8, 3.9, 3.10, 3.11, 3.12]
include:
- os: macos-latest
python: 3.9
python: 3.12
- os: windows-latest
python: 3.9
python: 3.12

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

Expand All @@ -42,10 +42,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python: 3.9
python: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RELAX NG Compact to RELAX NG conversion library
Converts RELAX NG schemata in Compact syntax (`rnc`) to the equivalent schema
in the XML-based default RELAX NG syntax. Dependencies:

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

Feedback welcome on `GitHub`_. Please consider funding continued maintenance of this
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing :: Markup :: XML',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=['rnc2rng'],
entry_points={
Expand Down

0 comments on commit b54cd06

Please sign in to comment.