1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-05-03 22:27:31 +02:00

Merge pull request #431 from hugovk/add-python-3.9

This commit is contained in:
Hugo van Kemenade 2020-10-07 09:44:41 +03:00 committed by GitHub
commit 62b89200c6
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macOS-latest]
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9]
include:
- os: ubuntu-latest
python-version: 3.8

View File

@ -25,7 +25,7 @@ mkdir -p /io/temp-wheels
# Clean out any old existing wheels.
find /io/temp-wheels/ -type f -delete
for PYBIN in /opt/python/cp3[5678]*/bin; do
for PYBIN in /opt/python/cp3[6789]*/bin; do
"${PYBIN}/pip" install -q -U setuptools wheel pytest --cache-dir /io/pip-cache
(cd /io/ && "${PYBIN}/python" -m pip install .)
(cd /io/ && "${PYBIN}/python" -m pytest)