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

Added python3.10 to CI #646

Merged
merged 1 commit into from
Oct 18, 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
4 changes: 4 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ task:
- IMAGE: python:rc-slim
- IMAGE: pypy:3.6-slim
- IMAGE: pypy:3.7-slim
- IMAGE: python:3.10-slim

container:
image: $IMAGE
Expand Down Expand Up @@ -103,12 +104,14 @@ macOS_task:
- PYTHON: 3.7.9
- PYTHON: 3.8.6
- PYTHON: 3.9.0
- PYTHON: 3.10.0
depends_on:
- build
install_script:
# Per the pyenv homebrew recommendations.
# https://github.com/pyenv/pyenv/wiki#suggested-build-environment
# - xcode-select --install # Unnecessary on Cirrus
- brew update
- brew install openssl readline sqlite3 xz zlib pyenv
- pyenv install ${PYTHON}
- pyenv global ${PYTHON}
Expand Down Expand Up @@ -151,6 +154,7 @@ task:
- IMAGE: python:3.7-windowsservercore
- IMAGE: python:3.8-windowsservercore
- IMAGE: python:3.9-windowsservercore
- IMAGE: python:3.10-windowsservercore
- IMAGE: python:rc-windowsservercore

install_script:
Expand Down
3 changes: 3 additions & 0 deletions bors.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,17 @@ status = [
"Linux python:3.7-slim",
"Linux python:3.8-slim",
"Linux python:3.9-slim",
"Linux python:3.10-slim",
"Windows python:3.6-windowsservercore",
"Windows python:3.7-windowsservercore",
"Windows python:3.8-windowsservercore",
"Windows python:3.9-windowsservercore",
"Windows python:3.10-windowsservercore",
"macOS PYTHON:3.6.12",
"macOS PYTHON:3.7.9",
"macOS PYTHON:3.8.6",
"macOS PYTHON:3.9.0",
"macOS PYTHON:3.10.0",
"pep517",
]

Expand Down