Skip to content

Commit

Permalink
Drop 3.8 support (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn authored Sep 15, 2024
1 parent 1caba10 commit 0ab8193
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
manylinux: auto
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -50,7 +50,7 @@ jobs:
target: aarch64-unknown-linux-gnu
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -71,7 +71,7 @@ jobs:
target: armv7
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
container: messense/manylinux_2_24-cross:armv7
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -92,7 +92,7 @@ jobs:
target: x86_64
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
manylinux: musllinux_1_1
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -113,7 +113,7 @@ jobs:
target: aarch64
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
manylinux: musllinux_1_1
- name: Upload wheels
uses: actions/upload-artifact@v4
Expand All @@ -133,7 +133,7 @@ jobs:
with:
command: build
sccache: true
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -152,7 +152,7 @@ jobs:
with:
command: build
sccache: true
args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist --target universal2-apple-darwin -i 3.9 3.10 3.11 3.12
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -18,7 +17,7 @@ dependencies = []
license = "MIT"
description = "Probably the fastest Python package to convert longitude/latitude to timezone name"
name = "tzfpy"
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
pytz = ["pytz>=2024.2"]
Expand Down

0 comments on commit 0ab8193

Please sign in to comment.