Skip to content

Commit

Permalink
Use Pkg.build("PyCall"; verbose = true) (#27)
Browse files Browse the repository at this point in the history
* Use `Pkg.build("PyCall"; verbose = true)`

* Update Julia version for CI
  • Loading branch information
tkf authored Nov 17, 2021
1 parent 6708268 commit ed342ce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: ['1.5', '1.0']
julia-version: ['1.6', '1.0']
python-version: ['3.7', '3.8']
ipython-dep-name: ['ipython']
include:
- python-version: '3.8'
julia-version: '1.5'
julia-version: '1.6'
ipython-dep-name: 'ipython-pre'
- python-version: '3.8'
julia-version: '1.5'
julia-version: '1.6'
ipython-dep-name: 'ipython-dev'
fail-fast: false
name: Test
Expand Down
11 changes: 4 additions & 7 deletions test/install_dependencies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,8 @@ end

# Build PyCall again, since above installation could have changed
# Python versions.
Pkg.build("PyCall")

if VERSION >= v"0.7.0-"
@info "PyCall/deps/build.log:"
print(read(
joinpath(dirname(dirname(pathof(IPython.PyCall))), "deps", "build.log"),
String))
if VERSION < v"1.1"
Pkg.build("PyCall")
else
Pkg.build("PyCall"; verbose = true)
end

0 comments on commit ed342ce

Please sign in to comment.