Skip to content

Commit 582e4ae

Browse files
Use conda build exclusively to test installation.
Installing a package from a file url is broken in conda 4.1.8, but it's not something we actually need for our tests anyway.
1 parent c35773a commit 582e4ae

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,6 @@ script:
7979
- conda build conda/ndt.recipe --channel dynd/channel/dev
8080
- rm -rf build dynd.ndt.egg-info
8181
- conda build conda/nd.recipe --channel dynd/channel/dev
82-
- conda install --yes numpy libdynd --channel dynd/channel/dev
83-
- conda install $(conda build --output conda/ndt.recipe | grep bz2)
84-
- conda install $(conda build --output conda/nd.recipe | grep bz2)
8582

8683
after_success:
8784
- if [ $TRAVIS_BRANCH == "master" ] && [ $TRAVIS_PULL_REQUEST == "false" ]; then anaconda --token $ANACONDA_TOKEN upload $(conda build --output conda/ndt.recipe) --user dynd --channel dev; fi

conda/nd.recipe/meta.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ requirements:
2929
- libdynd
3030
- libgcc >=5.2 # [linux]
3131

32-
# Test separately to avoid unsatisfiable package dependencies bug on Win32.
3332
test:
3433
requires:
35-
- numba
34+
- numba >=0.25.0
3635
commands:
3736
- python -m dynd.nd.test
3837

conda/ndt.recipe/meta.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ requirements:
3232
- libdynd {{ version }}
3333
- libgcc >=5.2 # [linux]
3434

35-
# Test separately to avoid unsatisfiable package dependencies bug on Win32.
3635
test:
3736
requires:
3837
- numba >=0.25.0

0 commit comments

Comments
 (0)