From 0ab8193f8e604c729a982b45e592c07908edf97d Mon Sep 17 00:00:00 2001 From: ringsaturn Date: Sun, 15 Sep 2024 22:51:53 +0800 Subject: [PATCH] Drop 3.8 support (#67) --- .github/workflows/CI.yml | 14 +++++++------- pyproject.toml | 3 +-- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index db42077..8faf525 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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: @@ -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: @@ -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 @@ -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 @@ -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 @@ -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: @@ -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: diff --git a/pyproject.toml b/pyproject.toml index 8ec6e8c..8108528 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", @@ -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"]