update python to version to 3.11 and disable png/jpeg for now

This commit is contained in:
Axel Kohlmeyer
2022-11-26 15:29:32 -05:00
parent 1e408416d2
commit 2cfcb16e31

View File

@ -26,7 +26,7 @@ jobs:
- name: Select Python version
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- name: Building LAMMPS via CMake
shell: bash
@ -35,6 +35,8 @@ jobs:
python3 -m pip install pyyaml
cmake -C cmake/presets/windows.cmake \
-D PKG_PYTHON=on \
-D WITH_PNG=off \
-D WITH_JPEG=off \
-S cmake -B build \
-D BUILD_SHARED_LIBS=on \
-D LAMMPS_EXCEPTIONS=on \