File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,5 @@ strategy:
1313container : $[ variables['containerImage'] ]
1414
1515steps :
16- - script : ./.ci/travis.script.bash
16+ - script : ./.ci/pytest.bash
17+ - script : ./.ci/wheel.bash
Original file line number Diff line number Diff line change @@ -19,4 +19,4 @@ python -m venv ~/venv
1919source ~ /venv/bin/activate
2020python -m pip install -U pip pytest wheel
2121
22- python -m install git+https://github.com/pymor/pymor.git#egg=pymor
22+ python -m pip install git+https://github.com/pymor/pymor.git#egg=pymor
Original file line number Diff line number Diff line change 1- cmake_minimum_required (VERSION 2.8.12 )
1+ cmake_minimum_required (VERSION 3.2 )
22
33# this should only be necessary while the deal setup macro is copied
4- set (CMAKE_CXX_STANDARD 14 CACHE STRING "" )
4+ set (CMAKE_CXX_STANDARD 17 CACHE STRING "" )
55
66project (pymor_dealii)
77
@@ -10,7 +10,7 @@ INCLUDE(dealii_macro)
1010# Set a default build configuration if none is specified. 'MinSizeRel' produces the smallest binaries
1111if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES )
1212 message (STATUS "Setting build type to 'RelWithDebInfo' as none was specified." )
13- set (CMAKE_BUILD_TYPE RelWithDebInfo STRING "Choose the type of build." FORCE)
13+ set (CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build." FORCE)
1414endif ()
1515# Add a CMake parameter for choosing a desired Python version
1616set (PYBIND11_PYTHON_VERSION "3" CACHE STRING "Python version to use for compiling the example library" )
You can’t perform that action at this time.
0 commit comments