Skip to content

Commit

Permalink
Filter out Python 3.9 in wheels pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobmontiel committed Jun 14, 2020
1 parent 3da8e17 commit a91b0cd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cicd/azure-wheel-helpers/build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ echo "All Pythons: ${pys[@]}"
pys=(${pys[@]//*27*/})
pys=(${pys[@]//*34*/})
pys=(${pys[@]//*35*/})
# Filter out Python 3.9 temporarily
pys=(${pys[@]//*39*/})

# Print list of Python's being used
echo "Using Pythons: ${pys[@]}"
Expand Down

0 comments on commit a91b0cd

Please sign in to comment.