From e89c02fa766c0f62624828ebd4a6df127778e1f9 Mon Sep 17 00:00:00 2001 From: Sergey Fedoseev Date: Wed, 5 Jun 2024 11:19:33 +0400 Subject: [PATCH] Drop Python 3.8 support (#3993) --- .github/workflows/py-ci.yml | 2 +- api/python/setup.py | 3 +-- docs/CHANGELOG.md | 2 ++ 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/py-ci.yml b/.github/workflows/py-ci.yml index a3467a2da55..b1d36f78cbd 100644 --- a/.github/workflows/py-ci.yml +++ b/.github/workflows/py-ci.yml @@ -82,7 +82,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] runs-on: ${{ matrix.os }} env: QUILT_DISABLE_USAGE_METRICS: true diff --git a/api/python/setup.py b/api/python/setup.py index 7836698666c..62fec130710 100644 --- a/api/python/setup.py +++ b/api/python/setup.py @@ -40,12 +40,11 @@ def run(self): packages=find_packages(exclude=("tests", "tests.*")), description='Quilt: where data comes together', long_description=readme(), - python_requires='>=3.8', + python_requires='>=3.9', classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index d76cb3238fc..e3d2fae8745 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -17,6 +17,8 @@ Entries inside each section should be ordered by type: # unreleased - YYYY-MM-DD ## Python API +* [Removed] Drop Python 3.8 support ([#3993](https://github.com/quiltdata/quilt/pull/3993)) + ## CLI ## Catalog, Lambdas