Update tox.ini for Django 3.2, pypy, github actions #227
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR specifies how to install Django 3.2. Before this change, when a test is supposed to run against Django 3.2, it instead runs against the latest release.
This PR adds
basepython
entries forpypy
. This fixes running these test locally.This PR fixes cpython version mapping in
[gh-actions]
(like 3.8, 3.9, etc.). Previously, the github action tests for cpython versions were running against the latest Django, instead of all possible Django versions.This PR drops testing pypy against Django 3.2. There are a few errors that appear:
This appears to be issue with
pypy
dictionary implementations. Sometimes the header doesn't appear, and sometimes a dictionary value is retained across tests. Rather than debug this, I decided to drop them for this Django version that is no longer supported.