Skip to content

Commit a54bf84

Browse files
committed
update testing
1 parent f479213 commit a54bf84

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/run-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
1919
strategy:
2020
matrix:
21-
python-version: ['3.9', '3.12']
21+
python-version: ['3.9','3.10','3.11','3.12']
2222
platform: [ubuntu-latest, macos-latest, windows-latest]
2323
exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows.
2424
- platform: macos-latest
25-
python-version: 3.9
25+
python-version: 3.10
2626
- platform: windows-latest
27-
python-version: 3.9
27+
python-version: 3.10
2828
- platform: macos-latest
29-
python-version: 3.12
29+
python-version: 3.11
3030
- platform: windows-latest
31-
python-version: 3.12
31+
python-version: 3.11
3232
steps:
3333
- uses: actions/checkout@v2
3434
- name: Set up Python ${{ matrix.python-version }}

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ However, the import name for the package remains ``extractor``, without prefix.
5454
:target: https://github.com/robotools/extractor/actions?query=workflow%3ATests
5555
.. |PyPI Version| image:: https://img.shields.io/pypi/v/ufo-extractor.svg
5656
:target: https://pypi.org/project/ufo-extractor/
57-
.. |Python Versions| image:: https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9%2C%203.10-blue.svg
57+
.. |Python Versions| image:: https://img.shields.io/badge/python-3.8%2C%203.9%2C%203.10%2C%203.11%2C%203.12-blue.svg

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"Topic :: Software Development :: Libraries :: Python Modules",
5757
"Topic :: Text Processing :: Fonts",
5858
],
59-
python_requires='>=3.7',
59+
python_requires='>=3.8',
6060
zip_safe=True,
6161
)
6262

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 3.0
3-
envlist = py3{7,8,9,10}
3+
envlist = py3{8,9,10,11,12}
44
skip_missing_interpreters = true
55

66
[testenv]

0 commit comments

Comments
 (0)