Skip to content

Commit

Permalink
Add Python 3.12 to CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Oct 11, 2023
1 parent 21742be commit d631b5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
BUILDMODE: [CIBUILDWHEEL, UNITTEST]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,6 @@ def _get_freetype_with_pkgconfig():
download_url="http://www.effbot.org/downloads#aggdraw",
license="Python (MIT style)",
long_description=DESCRIPTION.strip(),
platforms="Python 2.7 and later.",
url="https://github.com/pytroll/aggdraw",
ext_modules=[
Extension("aggdraw", ["aggdraw.cxx"] + sources,
Expand All @@ -169,6 +168,6 @@ def _get_freetype_with_pkgconfig():
library_dirs=library_dirs, libraries=libraries
)
],
python_requires='>=3.7',
python_requires='>=3.9',
tests_require=['pillow', 'pytest'],
)

0 comments on commit d631b5c

Please sign in to comment.