-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ilastik/upd-py38-py39
update pins
- Loading branch information
Showing
7 changed files
with
49 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test-w-conda-recipe: | ||
strategy: | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- name: setup conda | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
auto-update-conda: true | ||
auto-activate-base: true | ||
activate-environment: "" | ||
- name: linux conda build test | ||
if: matrix.os == 'ubuntu-latest' | ||
shell: bash -l {0} | ||
run: | | ||
conda install -n base -c conda-forge conda-build -y | ||
xvfb-run conda build -c conda-forge conda-recipe | ||
- name: osx conda build test | ||
if: matrix.os == 'macos-latest' | ||
shell: bash -l {0} | ||
run: | | ||
conda install -n base -c conda-forge conda-build -y | ||
conda build -c conda-forge conda-recipe | ||
- name: windows conda build test | ||
if: matrix.os == 'windows-latest' | ||
shell: cmd /C CALL {0} | ||
# auto activation of env does not seem to work on win | ||
run: | | ||
conda install -n base -c conda-forge conda-build -y & conda build -c conda-forge conda-recipe |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
boost: | ||
- 1.70.0 | ||
- 1.74.0 | ||
python: | ||
- 3.7 | ||
- 3.8 | ||
- 3.9 | ||
|
||
pin_run_as_build: | ||
python: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ build: | |
requirements: | ||
build: | ||
- cmake | ||
- make # [not win] | ||
- {{ compiler("cxx") }} | ||
host: | ||
- python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
|
||
#include <map> | ||
#include <vector> | ||
#include <cstddef> | ||
|
||
typedef float Point[3]; | ||
|
||
|