-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: merge rename to convert branch (#49)
- Loading branch information
Showing
6 changed files
with
36 additions
and
49 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
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,22 +1,17 @@ | ||
[PyCall](https://github.com/JuliaPy/PyCall.jl) is currently configured to use the Julia-specific Python distribution | ||
installed by the [Conda.jl](https://github.com/JuliaPy/Conda.jl) package. | ||
|
||
conda create --name ak-julia | ||
conda activate ak-julia | ||
conda install -c conda-forge awkward | ||
[PythonCall](https://github.com/JuliaPy/PythonCall.jl) is currently configured to use the Julia-specific Python distribution | ||
installed by the [CondaPkg.jl](https://github.com/JuliaPy/CondaPkg.jl) package. | ||
|
||
```julia | ||
using Conda | ||
Conda.add("awkward") | ||
using CondaPkg | ||
CondaPkg.add("numpy") | ||
CondaPkg.add("awkward") | ||
``` | ||
|
||
```julia | ||
using PyCall | ||
using PythonCall | ||
|
||
const ak = pyimport("awkward") | ||
|
||
test() = println(ak.__version__) | ||
|
||
test() | ||
2.4.6 | ||
println(ak.__version__) | ||
2.5.0 | ||
``` |
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 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 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 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 |
---|---|---|
|
@@ -3170,4 +3170,4 @@ end | |
|
||
end # @testset "AwkwardArray.jl" | ||
|
||
include("./runpytests.jl") | ||
include("./runpytests.jl") |