Drop support for Python 3.6, refs #517

This commit is contained in:
Simon Willison 2022-12-09 17:25:23 -08:00
commit e660635cea
3 changed files with 4 additions and 5 deletions

View file

@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3

View file

@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
numpy: [0, 1]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
@ -49,6 +49,5 @@ jobs:
- name: Check formatting
run: black . --check
- name: Check if cog needs to be run
if: matrix.python-version != '3.6'
run: |
cog --check README.md docs/*.rst

View file

@ -60,7 +60,7 @@ setup(
"Issues": "https://github.com/simonw/sqlite-utils/issues",
"CI": "https://github.com/simonw/sqlite-utils/actions",
},
python_requires=">=3.6",
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
@ -68,11 +68,11 @@ setup(
"Intended Audience :: End Users/Desktop",
"Topic :: Database",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
# Needed to bundle py.typed so mypy can see it:
zip_safe=False,