Skip to content

update valhalla to 3.3.0 #28

update valhalla to 3.3.0

update valhalla to 3.3.0 #28

Workflow file for this run

name: Pull Request
# run test within the manylinux container: linux is quickest to run but needs access to the right system libs
# runs tests on all python versions
# push_master.yml tests all platforms but only py3.7 (lowest supported version)
on:
pull_request:
branches:
- 'master'
paths-ignore:
- '*.md'
- '*.sh'
- '*.ipynb'
- '*.*json'
jobs:
build_wheels:
name: PR - cp*, ubuntu-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Configure Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Conan (Windows)
run: |
pip install pip --upgrade
pip install conan<2.0.0
conan profile new default --detect
conan profile update "settings.compiler=Visual Studio" default
conan profile update "settings.compiler.version=17" default
conan config set "storage.path=$env:GITHUB_WORKSPACE/conan_data"
conan install --install-folder conan_build --remote conancenter .
- uses: pypa/cibuildwheel@v2.12.1