Skip to content

Commit 1adab26

Browse files
committed
Update dependencies
1 parent a0bcfad commit 1adab26

File tree

3 files changed

+8
-10
lines changed

3 files changed

+8
-10
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.platform }}
2626
strategy:
2727
matrix:
28-
# if it works on 3.8 and 3.10, it ought to work on 3.9 as well, right?
29-
python-version: ["3.8", "3.10", "3.11"]
28+
python-version: ["3.10", "3.11"]
3029
platform: [ubuntu-latest]
3130
steps:
3231
- uses: actions/checkout@v2

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@
2727
},
2828
setup_requires=["setuptools_scm"],
2929
install_requires=[
30-
"absl-py>=0.9.0",
31-
"lxml>=4.0",
32-
"skia-pathops>=0.6.0",
30+
"absl-py>=2.1.0",
31+
"lxml>=5.3.0",
32+
"skia-pathops>=0.8.0",
3333
],
3434
extras_require={
3535
"dev": [
3636
"pytest",
3737
"pytest-clarity",
38-
"black==23.3.0",
39-
"pytype==2020.11.23; python_version < '3.9'",
38+
"black==24.10.0",
39+
"pytype==2024.9.13",
4040
],
4141
},
4242
# this is so we can use the built-in dataclasses module
43-
python_requires=">=3.8",
43+
python_requires=">=3.10",
4444
# this is for type checker to use our inline type hints:
4545
# https://www.python.org/dev/peps/pep-0561/#id18
4646
package_data={"picosvg": ["py.typed"]},

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
; $ export TOXENV=py39
1212
; $ tox
1313
; # If present use $TOXENV environment variable
14-
envlist = lint, py3{8,9,10,11}
14+
envlist = lint, py3{10,11}
1515

1616
; if any of the requested python interpreters is unavailable (e.g. on the local dev
1717
; workstation), the tests are skipped and tox won't return an error
@@ -32,7 +32,6 @@ commands =
3232
description = Check python style and typing annotation
3333
usedevelop = true
3434
; use the latest python that pytype supports
35-
basepython = python3.8
3635
commands =
3736
black --check --diff src tests
3837
pytype

0 commit comments

Comments
 (0)