Skip to content

Commit

Permalink
Merge pull request #71 from robotools/update_ci
Browse files Browse the repository at this point in the history
update testing
  • Loading branch information
benkiel authored Sep 24, 2024
2 parents f479213 + 48b36e1 commit a32d0cc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,21 @@ jobs:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
strategy:
matrix:
python-version: ['3.9', '3.12']
python-version: ['3.8', 3.9', '3.10', '3.11', '3.12']
platform: [ubuntu-latest, macos-latest, windows-latest]
exclude: # Only test on the oldest and latest supported stable Python on macOS and Windows.
- platform: macos-latest
python-version: 3.9
- platform: windows-latest
python-version: 3.9
- platform: macos-latest
python-version: 3.12
python-version: 3.10
- platform: windows-latest
python-version: 3.12
python-version: 3.10
- platform: macos-latest
python-version: 3.11
- platform: windows-latest
python-version: 3.11
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ However, the import name for the package remains ``extractor``, without prefix.
:target: https://github.com/robotools/extractor/actions?query=workflow%3ATests
.. |PyPI Version| image:: https://img.shields.io/pypi/v/ufo-extractor.svg
:target: https://pypi.org/project/ufo-extractor/
.. |Python Versions| image:: https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9%2C%203.10-blue.svg
.. |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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Fonts",
],
python_requires='>=3.7',
python_requires='>=3.8',
zip_safe=True,
)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 3.0
envlist = py3{7,8,9,10}
envlist = py3{8,9,10,11,12}
skip_missing_interpreters = true

[testenv]
Expand Down

0 comments on commit a32d0cc

Please sign in to comment.