From 7b4d34b42edadb23888a525b34584b2e423d0650 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 11 Sep 2023 10:27:15 -0700 Subject: [PATCH] Drop 3.6, add 3.11 --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- setup.py | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 74091fb..1d66427 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1cb7f91..c42f0d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index d6cf09e..03d2462 100644 --- a/setup.py +++ b/setup.py @@ -40,5 +40,4 @@ def get_long_description(): }, install_requires=["datasette>=0.54", "datasette-leaflet>=0.2.2"], extras_require={"test": ["pytest", "pytest-asyncio", "httpx", "sqlite-utils"]}, - tests_require=["datasette-cluster-map[test]"], )