File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 8989 python -m pip install --upgrade pip
9090 python -m pip install cibuildwheel
9191 python -m pip install packaging
92+ python -m pip install setuptools
9293 echo "CIBW_BEFORE_ALL=pip install cmake" >> $GITHUB_ENV
9394 PYTH_VER=${{ matrix.python-version }}
9495 PYTH_VER=${PYTH_VER//.}
@@ -108,6 +109,8 @@ jobs:
108109 set -vxeuo pipefail
109110 cd env/python
110111 python -VV
112+ python -m pip install packaging
113+ python -m pip install setuptools
111114 python setup.py bdist_wheel
112115 ls -la dist/*
113116 mkdir -p ../../dist
Original file line number Diff line number Diff line change @@ -75,6 +75,9 @@ add_library(genesis OBJECT ${genesis_source_files})
7575target_link_libraries (genesis genmath)
7676target_include_directories (genesis PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} /../src/ext /genesis/genesis_july08/)
7777target_compile_definitions (genesis PRIVATE ${SRW_DEFINITIONS} )
78+ if (UNIX )
79+ target_compile_options (genesis PRIVATE -std=c99 -Wno-implicit-int)
80+ endif ()
7881
7982#genmath
8083set (genmath_source_files
You can’t perform that action at this time.
0 commit comments