Skip to content

Commit

Permalink
erge branch 'v1' into annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
knutnergaard committed Nov 19, 2024
2 parents 0006786 + 8dd7eb2 commit f1021ca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,21 @@ jobs:
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]')"
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
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.10
- platform: windows-latest
python-version: 3.10
- platform: macos-latest
python-version: 3.11
- platform: windows-latest
python-version: 3.11
- platform: macos-latest
python-version: 3.13
- platform: windows-latest
python-version: 3.13
steps:
- uses: actions/checkout@v3.5.3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ into something that you wish fontParts did/didn't do.
Installation
~~~~~~~~~~~~

FontParts requires `Python <http://www.python.org/download/>`__ 3.8 or later.
FontParts requires `Python <http://www.python.org/download/>`__ 3.9 or later.

The package is listed in the Python Package Index (PyPI), so you can
install it with `pip <https://pip.pypa.io>`__:
Expand Down Expand Up @@ -123,7 +123,7 @@ or the ``TOXENV`` environment variable:
:target: https://github.com/robotools/fontParts/actions?query=workflow%3ATests
.. |PyPI| image:: https://img.shields.io/pypi/v/fontParts.svg
:target: https://pypi.org/project/fontParts
.. |Versions| image:: https://img.shields.io/badge/python-3.8%2C%203.9%2C%203.10%2C%203.11-blue.svg
.. |Versions| image:: https://img.shields.io/badge/python-3.9%2C%203.10%2C%203.11%2C%203.12%2C%203.13-blue.svg
:alt: Python Versions
.. |Coverage| image:: https://codecov.io/gh/robotools/fontParts/branch/master/graph/badge.svg
:target: https://codecov.io/gh/robotools/fontParts
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ write_to = 'Lib/fontParts/_version.py'
write_to_template = '__version__ = "{version}"'

[tool.ruff]
target-version = "py38"
target-version = "py39"

[tool.ruff.format]
# Enable reformatting of code snippets in docstrings.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Libraries",
],
python_requires=">=3.8",
python_requires=">=3.9",
zip_safe=True,
)

Expand Down

0 comments on commit f1021ca

Please sign in to comment.