Skip to content

Commit

Permalink
Merge pull request #154 from justvanrossum/bump-python
Browse files Browse the repository at this point in the history
Bump Python versions
  • Loading branch information
justvanrossum authored Jan 9, 2024
2 parents f07d746 + 1fa84db commit a75231e
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 15 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,13 @@ jobs:

strategy:
matrix:
os: [windows-latest, macOS-10.15, ubuntu-latest]
python-version: [3.7, 3.8, 3.9]
os: [windows-latest, macOS-latest, ubuntu-latest]
python-version: [3.8, "3.10"]
exclude:
- os: macOS-10.15
python-version: 3.7
- os: macOS-10.15
python-version: 3.8
- os: windows-latest
python-version: 3.7
python-version: "3.10"
- os: windows-latest
python-version: 3.8
python-version: "3.10"

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pytest==7.1.2
pillow==9.2.0
pillow==10.2.0
pyffmpeg==1.6.1 # pyup: ignore
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
skia-python==87.4
fonttools[unicode]==4.34.4
fonttools[unicode]==4.47.0
uharfbuzz==0.30.0
python-bidi==0.4.2
unicodedata2==14.0.0
unicodedata2==15.1.0
skia-pathops==0.7.2
blackrenderer==0.5.3
2 changes: 1 addition & 1 deletion src/drawbot_skia/gstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ def copy(self, **properties):
return self.__class__(**dct)

def __eq__(self, other):
if type(self) != type(other):
if type(self) is not type(other):
return False
if self._names != other._names:
return False
Expand Down
Binary file modified tests/apitests_expected_output/fontFromPath2.pdf
Binary file not shown.
Binary file modified tests/apitests_expected_output/fontVariations.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions tests/apitests_expected_output/fontVariations.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tests/apitests_expected_output/language.pdf
Binary file not shown.
Binary file modified tests/apitests_expected_output/textShaping.pdf
Binary file not shown.

0 comments on commit a75231e

Please sign in to comment.