Skip to content

Commit

Permalink
build with Python 3.11
Browse files Browse the repository at this point in the history
Since our Python bindings will only work with one major.minor version of Python,
it only makes sense to use the latest available.
  • Loading branch information
garfieldnate committed Aug 31, 2023
1 parent 7ce7d3d commit 5fdf7d1
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# depends on pre-installed software; see image definitions:
# - https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md
# - https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md
# We use these tools from the runner images: git, gcc/XCode/MSVC, python, swig, Tcl/Tk on MacOS
# We use these tools from the runner images: git, gcc/XCode/MSVC, swig, Tcl/Tk on MacOS

# TODO: not building svs_viewer ('Cannot find GL, GLU, not building svs_viewer' and 'Cannot find opengl32, glu32, not building svs_viewer')
# TODO: not building with TCL support; need to install TCL from somewhere (maybe http://tclkits.rkeene.org/fossil/wiki/Downloads?)
Expand All @@ -28,7 +28,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: setup Java
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand Down Expand Up @@ -105,7 +109,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
- name: setup Java
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
Expand Down

0 comments on commit 5fdf7d1

Please sign in to comment.