Skip to content
This repository was archived by the owner on Apr 24, 2022. It is now read-only.

Commit df5a369

Browse files
committed
Hunter upload script: lower requirements for Python
1 parent 8734637 commit df5a369

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ cache:
2525
before_install:
2626
- if [[ "$CUDA" = ON ]]; then source scripts/install-cuda-trusty.sh; fi
2727
- if [ "$TRAVIS_OS_NAME" = linux ]; then scripts/install_cmake.sh; fi
28-
- if [ "$TRAVIS_OS_NAME" = osx ]; then brew install python3; pip3 install requests; fi
28+
- if [ "$TRAVIS_OS_NAME" = osx ]; then pip install requests; fi
2929
script:
3030
- cmake -DHUNTER_JOBS_NUMBER=4 -DETHASHCUDA=$CUDA -DETHASHCL=ON -H. -Bbuild
3131
- cmake --build build -- -j4

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ HunterGate(
1515
LOCAL
1616
)
1717

18-
find_package(PythonInterp 3)
18+
find_package(PythonInterp)
1919
if(PYTHONINTERP_FOUND)
2020
hunter_gate_self(
2121
"${HUNTER_CACHED_ROOT}"

0 commit comments

Comments
 (0)