Skip to content

Commit

Permalink
add python 3.11 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
svirpioj committed Oct 11, 2023
1 parent cfaf13e commit 453ce94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yaml
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Build and upload packages
run: |
eval "$(conda shell.bash hook)"
for VERSION in 3.6 3.7 3.8 3.9 3.10; do
for VERSION in 3.6 3.7 3.8 3.9 3.10 3.11; do
conda create -n py$VERSION python=$VERSION
conda activate py$VERSION
STATIC_LIBS=1 python setup.py build_ext bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion build-release-linux.sh
Expand Up @@ -29,7 +29,7 @@ make download-build-static-deps
conda deactivate

# Build and upload packages
for VERSION in 3.6 3.7 3.8 3.9 3.10; do
for VERSION in 3.6 3.7 3.8 3.9 3.10 3.11; do
conda create -n py$VERSION -y python=$VERSION
conda activate py$VERSION
STATIC_LIBS=1 python setup.py build_ext bdist_wheel \
Expand Down

0 comments on commit 453ce94

Please sign in to comment.