Skip to content

Commit b2da403

Browse files
committed
Merge branch 'master' of https://github.com/JuliaPy/SymPy.jl
2 parents 0b0164e + 5b5079b commit b2da403

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ docs/build
55
docs/site
66
Manifest.toml
77
appveyor.yml
8-
.travis.yml
8+
.travis.yml
9+
default.profraw

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SymPy"
22
uuid = "24249f21-da20-56a4-8eb1-6a02cf4ae2e6"
3-
version = "2.1.1"
3+
version = "2.2.0"
44

55
[deps]
66
CommonEq = "3709ef60-1bee-4518-9f2f-acd86f176c50"
@@ -16,15 +16,13 @@ CommonSolve = "0.2"
1616
LinearAlgebra = "<0.0.1, 1.6"
1717
PyCall = "1.96.2"
1818
SpecialFunctions = "0.7, 0.8, 0.8, 0.10, 1, 2"
19-
SymbolicUtils = "1, 2"
20-
SymPyCore = "0.2, 1"
19+
SymPyCore = "0.2.5, 1"
2120
julia = "1.6"
2221

2322
[extras]
2423
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2524
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
2625
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
27-
SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
2826

2927
[targets]
30-
test = ["Test", "LinearAlgebra", "SpecialFunctions", "SymbolicUtils"]
28+
test = ["Test", "LinearAlgebra", "SpecialFunctions"]

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,29 @@ To use this package, both Python and its SymPy library must be
1818
installed on your system. If `PyCall` is installed using `Conda`
1919
(which is the default if no system `python` is found), then the
2020
underlying SymPy library will be installed via `Conda` when the
21-
package is first loaded. Otherwise, installing both Python and the
21+
package is first loaded.
22+
23+
If there are issues, you might try installing `PyCall` first, along the lines of :
24+
25+
```
26+
julia> using Pkg
27+
julia> ENV["PYTHON"]=""
28+
julia> Pkg.build("PyCall")
29+
julia> Pkg.add("SymPy")
30+
julia> using SymPy
31+
```
32+
33+
34+
Otherwise, installing both Python and the
2235
SymPy library can be done by other means.
2336
In this case, the `Anaconda` distribution is suggested, as it provides a single
2437
installation of Python that includes SymPy and many other
2538
scientific libraries that can be profitably accessed within `Julia`
2639
via `PyCall`. (Otherwise, install Python then download the SymPy
2740
library from https://github.com/sympy/sympy/releases and install.)
2841

42+
43+
2944
To upgrade the underlying `sympy` library, which has new releases at a
3045
rate similar to `Julia`, when installed with `Conda`, the following commands
3146
are available:

0 commit comments

Comments
 (0)