Skip to content

Commit c0bdece

Browse files
authored
Drop 3.8-specific items (#100)
1 parent 3ea168c commit c0bdece

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

Diff for: .github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Set up Python
2626
uses: actions/setup-python@v5
2727
with:
28-
python-version: "3.8"
28+
python-version: "3.9"
2929
- name: Install dependencies
3030
run: |
3131
make requirements

Diff for: .github/workflows/unit-tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: Unit tests
2+
name: Unit tests
23

34
on:
45
pull_request:
@@ -28,10 +29,10 @@ jobs:
2829

2930
steps:
3031
- uses: actions/checkout@v4
31-
- name: Set up Python 3.8
32+
- name: Set up Python 3.9
3233
uses: actions/setup-python@v5
3334
with:
34-
python-version: "3.8"
35+
python-version: "3.9"
3536
- name: Install dependencies
3637
run: |
3738
make requirements

Diff for: pyproject.toml

+2-9
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = 'URL parser and manipulator based on the WHAT WG URL standard'
1212
readme = "README.rst"
13-
requires-python = ">=3.8"
13+
requires-python = ">=3.9"
1414
license = {text = "Apache 2.0"}
1515
classifiers = [
1616
"License :: OSI Approved :: Apache Software License",
@@ -35,14 +35,9 @@ include-package-data = true
3535
[tool.setuptools.package-data]
3636
ada_url = ["*.c", "*.h", "*.o"]
3737

38-
[tool.black]
39-
line-length = 88
40-
target-version = ['py38']
41-
skip-string-normalization = true
42-
4338
[tool.ruff]
4439
line-length = 88
45-
target-version = "py38"
40+
target-version = "py39"
4641
exclude = [
4742
".git",
4843
".ruff_cache",
@@ -62,13 +57,11 @@ include = [
6257

6358
[tool.cibuildwheel]
6459
build = [
65-
"cp38-*",
6660
"cp39-*",
6761
"cp310-*",
6862
"cp311-*",
6963
"cp312-*",
7064
"cp313-*",
71-
"pp38-*",
7265
"pp39-*",
7366
"pp310-*",
7467
]

0 commit comments

Comments
 (0)