Skip to content

Commit 0d070fb

Browse files
authored
Merge pull request #14 from jverzani/update2a
rename to be more explicit/more verbose
2 parents f9fdc3d + b44b462 commit 0d070fb

26 files changed

+109
-1498
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
- run: |
6262
julia --project=docs -e '
6363
using Documenter: doctest
64-
using SymPyCall
65-
doctest(SymPyCall)'
64+
using SymPyPythonCall
65+
doctest(SymPyPythonCall)'
6666
- run: julia --project=docs docs/make.jl
6767
env:
6868
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "SymPyCall"
1+
name = "SymPyPythonCall"
22
uuid = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"
33
authors = ["jverzani <jverzani@gmail.com> and contributors"]
44
version = "0.2.0"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# SymPyCall
1+
# SymPyPythonCall
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://jverzani.github.io/SymPyCall.jl/stable)
4-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://jverzani.github.io/SymPyCall.jl/dev)
5-
[![Build Status](https://github.com/jverzani/SymPyCall.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/jverzani/SymPyCall.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/jverzani/SymPyCall.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/jverzani/SymPyCall.jl)
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://jverzani.github.io/SymPyPythonCall.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://jverzani.github.io/SymPyPythonCall.jl/dev)
5+
[![Build Status](https://github.com/jverzani/SymPyPythonCall.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/jverzani/SymPyPythonCall.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/jverzani/SymPyPythonCall.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/jverzani/SymPyPythonCall.jl)
77

88

99
This is a start on what is needed to use `PythonCall` instead of `PyCall` for `SymPy.jl`.

docs/Manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
8787
[[deps.Sockets]]
8888
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
8989

90-
[[deps.SymPyCall]]
90+
[[deps.SymPyPythonCall]]
9191
path = ".."
9292
uuid = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"
9393
version = "0.1.0"

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
SymPyCall = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"
3+
SymPyPythonCall = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"

docs/make.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@ ENV["PLOTS_TEST"] = "true"
22
ENV["GKSwstype"] = "100"
33

44

5-
using SymPyCall
5+
using SymPyPythonCall
66
using Documenter
77

88
makedocs(sitename="My Documentation")
99

1010

11-
#DocMeta.setdocmeta!(SymPyCall, :DocTestSetup, :(using SymPyCall); recursive=true)
11+
#DocMeta.setdocmeta!(SymPyPythonCall, :DocTestSetup, :(using SymPyPythonCall); recursive=true)
1212

1313
# makedocs(;
14-
# modules=[SymPyCall],
14+
# modules=[SymPyPythonCall],
1515
# authors="jverzani <jverzani@gmail.com> and contributors",
16-
# repo="https://github.com/jverzani/SymPyCall.jl/blob/{commit}{path}#{line}",
17-
# sitename="SymPyCall.jl",
16+
# repo="https://github.com/jverzani/SymPyPythonCall.jl/blob/{commit}{path}#{line}",
17+
# sitename="SymPyPythonCall.jl",
1818
# format=Documenter.HTML(;
1919
# prettyurls=get(ENV, "CI", "false") == "true",
20-
# canonical="https://jverzani.github.io/SymPyCall.jl",
20+
# canonical="https://jverzani.github.io/SymPyPythonCall.jl",
2121
# assets=String[],
2222
# ),
2323
# pages=[
@@ -27,6 +27,6 @@ makedocs(sitename="My Documentation")
2727
# )
2828

2929
# # deploydocs(;
30-
# repo="github.com/jverzani/SymPyCall.jl",
30+
# repo="github.com/jverzani/SymPyPythonCall.jl",
3131
# devbranch="main",
3232
# )

0 commit comments

Comments
 (0)