From 083d39f53ef8caa273084ea43baf818d343fa8b9 Mon Sep 17 00:00:00 2001 From: David Corvoysier Date: Wed, 25 Sep 2024 16:37:20 +0000 Subject: [PATCH] chore: minimal python version is 3.9 --- .github/workflows/linux-cpu-tests.yml | 4 ++-- pyproject.toml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux-cpu-tests.yml b/.github/workflows/linux-cpu-tests.yml index 3a162c54..3325582d 100644 --- a/.github/workflows/linux-cpu-tests.yml +++ b/.github/workflows/linux-cpu-tests.yml @@ -26,7 +26,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.11"] + python-version: ["3.9", "3.11"] steps: - uses: actions/checkout@v2 @@ -61,7 +61,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.11"] + python-version: ["3.9", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/pyproject.toml b/pyproject.toml index 6c9b6e78..4190f66f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,14 +8,13 @@ classifiers = [ 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Topic :: Scientific/Engineering :: Artificial Intelligence' ] keywords = ['torch', 'quantization'] -requires-python = '>=3.8.0' +requires-python = '>=3.9.0' authors = [{ name = 'David Corvoysier' }] maintainers = [ {name = "HuggingFace Inc. Special Ops Team", email="hardware@huggingface.co"},