We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3339b31 commit 1cb6e1cCopy full SHA for 1cb6e1c
.github/workflows/build.yml
@@ -39,13 +39,21 @@ jobs:
39
- name: Setup micromamba
40
uses: mamba-org/provision-with-micromamba@main
41
with:
42
+ miniforge-variant: Mambaforge
43
+ miniforge-version: latest
44
+ use-mamba: true
45
+ auto-update-conda: true
46
environment-file: .github/environment.yml
47
extra-specs: |
48
python=${{ matrix.python-version }}
49
50
- name: Install python-pdal
51
run: pip install .
52
53
+ - name: libcxx=14 for OSX
54
+ if: matrix.os == 'macos-latest'
55
+ run: mamba install -c conda-forge libcxx=14 -y
56
+
57
- name: Install python-pdal-plugins
58
working-directory: ./plugins
59
0 commit comments