From 0a0602761b0be2bdde1847d43b761921ce8c27e2 Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Sun, 29 Jan 2023 14:45:54 -0800 Subject: [PATCH] Update Python support. Remove 3.6 and change Change Log. --- .github/workflows/python-package.yml | 2 +- docs/source/changelog.rst | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 1a28007..7c22bee 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest 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] steps: - uses: actions/checkout@v2 diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index e813ac4..9ed9b5c 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,14 @@ Changelog ********* +Current version +=============== + +Changes +------- + +* Remove support for Python 3.6; add support for up to Python 3.11. + v3.4.0 ======