Skip to content

Commit

Permalink
Add support for python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Oct 5, 2021
1 parent 7d50693 commit cd3da84
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ci/scripts/install_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ declare -A versions
versions=([3.6]=3.6.8
[3.7]=3.7.9
[3.8]=3.8.10
[3.9]=3.9.6)
[3.9]=3.9.6,
[3.10]=3.10.0)

if [ "$#" -ne 2 ]; then
echo "Usage: $0 <platform> <version>"
Expand Down
5 changes: 3 additions & 2 deletions dev/tasks/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ tasks:
{% for python_version, python_tag, abi_tag in [("3.6", "cp36", "cp36m"),
("3.7", "cp37", "cp37m"),
("3.8", "cp38", "cp38"),
("3.9", "cp39", "cp39")] %}
("3.9", "cp39", "cp39"),
("3.10", "cp310", "cp310")] %}

{############################## Wheel Linux ##################################}

Expand Down Expand Up @@ -941,7 +942,7 @@ tasks:
UBUNTU: 20.04
image: ubuntu-cpp-thread-sanitizer

{% for python_version in ["3.6", "3.7", "3.8", "3.9"] %}
{% for python_version in ["3.6", "3.7", "3.8", "3.9", "3.10"] %}
test-conda-python-{{ python_version }}:
ci: github
template: docker-tests/github.linux.yml
Expand Down

0 comments on commit cd3da84

Please sign in to comment.