Skip to content

Commit

Permalink
Drop Python 3.8 support (#3993)
Browse files Browse the repository at this point in the history
  • Loading branch information
sir-sigurd authored Jun 5, 2024
1 parent cdb6fe4 commit e89c02f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/py-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions api/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e89c02f

Please sign in to comment.