Skip to content

Commit 567c01b

Browse files
author
Christopher Doris
committed
bump min julia to 1.6.1 (Pkg.add does not support io kwarg in 1.6.0)
1 parent 0d33da8 commit 567c01b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MacroTools = "0.5"
2121
Requires = "1"
2222
Tables = "1"
2323
UnsafePointers = "1"
24-
julia = "1.6"
24+
julia = "1.6.1"
2525

2626
[extras]
2727
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ The existing package [PyCall](https://github.com/JuliaPy/PyCall.jl) is another s
4646
- PythonCall by default never copies mutable objects when converting, but instead directly wraps the mutable object. This means that modifying the converted object modifies the original, and conversion is faster.
4747
- PythonCall does not usually automatically convert results to Julia values, but leaves them as Python objects. This makes it easier to do Pythonic things with these objects (e.g. accessing methods) and is type-stable.
4848
- PythonCall installs dependencies into a separate Conda environment for each Julia project. This means each Julia project can have an isolated set of Python dependencies.
49-
- PythonCall supports Julia 1.6+ and Python 3.7+ whereas PyCall supports Julia 0.7+ and Python 2.7+.
49+
- PythonCall supports Julia 1.6.1+ and Python 3.7+ whereas PyCall supports Julia 0.7+ and Python 2.7+.

docs/src/pycall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ Note also that JuliaCall will use a separate Julia project for each virtual/cond
7272

7373
### Compatibility
7474

75-
PyCall supports Julia 0.7+ and Python 2.7+, whereas PythonCall supports Julia 1.4+ and Python 3.5+. PyCall requires numpy to be installed, PythonCall doesn't (it provides the same fast array access through the buffer protocol and array interface).
75+
PyCall supports Julia 0.7+ and Python 2.7+, whereas PythonCall supports Julia 1.6.1+ and Python 3.7+. PyCall requires numpy to be installed, PythonCall doesn't (it provides the same fast array access through the buffer protocol and array interface).

pysrc/juliacall/juliapkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"julia": "1.6",
2+
"julia": "1.6.1",
33
"packages": {
44
"PythonCall": {
55
"uuid": "6099a3de-0909-46bc-b1f4-468b9a2dfc0d",

0 commit comments

Comments
 (0)