Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI for new Python versions #234

Merged
merged 4 commits into from
Jan 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Zipapp_bootstrap_task:
matrix:
image: python:3.7-slim
image: python:3.8-slim
image: python:3.9-slim
setup_script:
- cp -r . /tmp/bork-pristine
- cp -r /tmp/bork-pristine /tmp/pass1
Expand Down Expand Up @@ -53,6 +54,7 @@ Linux_task:
- image: python:3.6-slim
- image: python:3.7-slim
- image: python:3.8-slim
- image: python:3.9-slim
install_script:
- apt-get update
- apt-get install -y git
Expand All @@ -69,11 +71,13 @@ macOS_task:
LANG: en_US.UTF-8
PATH: ${HOME}/.pyenv/shims:${PATH}
matrix:
- PYTHON: 3.6.8
- PYTHON: 3.7.2
- PYTHON: 3.6.9
- PYTHON: 3.7.9
- PYTHON: 3.8.6
- PYTHON: 3.9.0
install_script:
# Per the pyenv homebrew recommendations.
# https://github.com/pyenv/pyenv/wiki#suggested-build-environment
# https://github.com/pyenv/pyenv/wiki#suggested-build-environment
- brew install openssl readline pyenv git
- pyenv install ${PYTHON}
- pyenv global ${PYTHON}
Expand All @@ -90,6 +94,7 @@ FreeBSD_task:
matrix:
- PYTHON: 3.6
- PYTHON: 3.7
- PYTHON: 3.8
install_script:
- PY=`echo $PYTHON | tr -d '.'`
- pkg install -y python${PY} py${PY}-setuptools git
Expand Down
9 changes: 7 additions & 2 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
status = [
"FreeBSD PYTHON:3.6",
"FreeBSD PYTHON:3.7",
"FreeBSD PYTHON:3.8",
"Lint",
"Linux container:python:3.6-slim",
"Linux container:python:3.7-slim",
"Linux container:python:3.8-slim",
"Linux container:python:3.9-slim",
"Zipapp_bootstrap container:python:3.7-slim",
"Zipapp_bootstrap container:python:3.8-slim",
"macOS PYTHON:3.6.8",
"macOS PYTHON:3.7.2",
"Zipapp_bootstrap container:python:3.9-slim",
"macOS PYTHON:3.6.9",
"macOS PYTHON:3.7.9",
"macOS PYTHON:3.8.6",
"macOS PYTHON:3.9.0",
]

delete_merged_branches = true
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
License :: OSI Approved :: MIT License
Operating System :: OS Independent

Expand Down