diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5fff326..235027b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,7 +57,8 @@ jobs: run: | set -x python -VV - python -m pip install 'tox<4' + # Must pin virtualenv for tox py36 testenv: + python -m pip install 'tox<4' 'virtualenv<20.22.0' python -m tox --version - name: Test ${{ matrix.tox.name }} run: | diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 19ab016..d8f1c3c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -36,6 +36,12 @@ Fixes * **Postmark:** Workaround for handling inbound test webhooks. (`More info `__) +Deprecations +~~~~~~~~~~~~ + +* This will be the last Anymail release to support Python 3.6 + (which reached end-of-life on 2021-12-23). + Other ~~~~~ diff --git a/setup.py b/setup.py index 3173b15..ae3f219 100644 --- a/setup.py +++ b/setup.py @@ -45,6 +45,7 @@ requirements_dev = [ "sphinx-rtd-theme", "tox", "twine", + "virtualenv<20.22.0", # tox dependency, pinned for Python 3.6 tox testenv "wheel", ]