File tree 3 files changed +6
-12
lines changed
3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 25
25
- name : Set up Python
26
26
uses : actions/setup-python@v5
27
27
with :
28
- python-version : " 3.8 "
28
+ python-version : " 3.9 "
29
29
- name : Install dependencies
30
30
run : |
31
31
make requirements
Original file line number Diff line number Diff line change 1
1
name : Unit tests
2
+ name : Unit tests
2
3
3
4
on :
4
5
pull_request :
@@ -28,10 +29,10 @@ jobs:
28
29
29
30
steps :
30
31
- uses : actions/checkout@v4
31
- - name : Set up Python 3.8
32
+ - name : Set up Python 3.9
32
33
uses : actions/setup-python@v5
33
34
with :
34
- python-version : " 3.8 "
35
+ python-version : " 3.9 "
35
36
- name : Install dependencies
36
37
run : |
37
38
make requirements
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ authors = [
10
10
]
11
11
description = ' URL parser and manipulator based on the WHAT WG URL standard'
12
12
readme = " README.rst"
13
- requires-python = " >=3.8 "
13
+ requires-python = " >=3.9 "
14
14
license = {text = " Apache 2.0" }
15
15
classifiers = [
16
16
" License :: OSI Approved :: Apache Software License" ,
@@ -35,14 +35,9 @@ include-package-data = true
35
35
[tool .setuptools .package-data ]
36
36
ada_url = [" *.c" , " *.h" , " *.o" ]
37
37
38
- [tool .black ]
39
- line-length = 88
40
- target-version = [' py38' ]
41
- skip-string-normalization = true
42
-
43
38
[tool .ruff ]
44
39
line-length = 88
45
- target-version = " py38 "
40
+ target-version = " py39 "
46
41
exclude = [
47
42
" .git" ,
48
43
" .ruff_cache" ,
@@ -62,13 +57,11 @@ include = [
62
57
63
58
[tool .cibuildwheel ]
64
59
build = [
65
- " cp38-*" ,
66
60
" cp39-*" ,
67
61
" cp310-*" ,
68
62
" cp311-*" ,
69
63
" cp312-*" ,
70
64
" cp313-*" ,
71
- " pp38-*" ,
72
65
" pp39-*" ,
73
66
" pp310-*" ,
74
67
]
You can’t perform that action at this time.
0 commit comments