Skip to content

Commit

Permalink
Drop 3.8-specific items (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles authored Oct 16, 2024
1 parent 3ea168c commit c0bdece
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"
- name: Install dependencies
run: |
make requirements
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Unit tests
name: Unit tests

on:
pull_request:
Expand Down Expand Up @@ -28,10 +29,10 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.9"
- name: Install dependencies
run: |
make requirements
Expand Down
11 changes: 2 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
description = 'URL parser and manipulator based on the WHAT WG URL standard'
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "Apache 2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
Expand All @@ -35,14 +35,9 @@ include-package-data = true
[tool.setuptools.package-data]
ada_url = ["*.c", "*.h", "*.o"]

[tool.black]
line-length = 88
target-version = ['py38']
skip-string-normalization = true

[tool.ruff]
line-length = 88
target-version = "py38"
target-version = "py39"
exclude = [
".git",
".ruff_cache",
Expand All @@ -62,13 +57,11 @@ include = [

[tool.cibuildwheel]
build = [
"cp38-*",
"cp39-*",
"cp310-*",
"cp311-*",
"cp312-*",
"cp313-*",
"pp38-*",
"pp39-*",
"pp310-*",
]
Expand Down

0 comments on commit c0bdece

Please sign in to comment.