Skip to content

Commit f7c3b61

Browse files
author
Christopher Doris
committed
transfer to JuliaPy org
1 parent a803e2e commit f7c3b61

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

.github/ISSUE_TEMPLATE/help---support.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ assignees: ''
77

88
---
99

10-
Please direct any other questions to [github discussions](https://github.com/cjdoris/PythonCall.jl/discussions).
10+
Please direct any other questions to [github discussions](https://github.com/JuliaPy/PythonCall.jl/discussions).

CITATION.bib

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ @misc{PythonCall.jl
22
author = {Rowley, Christopher},
33
title = {PythonCall.jl: Python and Julia in harmony},
44
year = {2022},
5-
url = {https://github.com/cjdoris/PythonCall.jl},
5+
url = {https://github.com/JuliaPy/PythonCall.jl},
66
}

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<h1><img src="https://raw.githubusercontent.com/cjdoris/PythonCall.jl/main/docs/src/assets/logo.png" alt="PythonCall.jl logo" style="width: 100px;"><br>PythonCall &amp;&nbsp;JuliaCall</h1>
1+
<h1><img src="https://raw.githubusercontent.com/JuliaPy/PythonCall.jl/main/docs/src/assets/logo.png" alt="PythonCall.jl logo" style="width: 100px;"><br>PythonCall &amp;&nbsp;JuliaCall</h1>
22

33
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
4-
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://cjdoris.github.io/PythonCall.jl/stable)
5-
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://cjdoris.github.io/PythonCall.jl/dev)
6-
[![Tests](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests.yml/badge.svg)](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests.yml)
7-
[![Codecov](https://codecov.io/gh/cjdoris/PythonCall.jl/branch/main/graph/badge.svg?token=A813UUIHGS)](https://codecov.io/gh/cjdoris/PythonCall.jl)
4+
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://juliapy.github.io/PythonCall.jl/stable)
5+
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://juliapy.github.io/PythonCall.jl/dev)
6+
[![Tests](https://github.com/JuliaPy/PythonCall.jl/actions/workflows/tests.yml/badge.svg)](https://github.com/JuliaPy/PythonCall.jl/actions/workflows/tests.yml)
7+
[![Codecov](https://codecov.io/gh/JuliaPy/PythonCall.jl/branch/main/graph/badge.svg?token=A813UUIHGS)](https://codecov.io/gh/JuliaPy/PythonCall.jl)
88
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/P/PythonCall.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/P/PythonCall.html)
99

1010
Bringing [**Python®**](https://www.python.org/) and [**Julia**](https://julialang.org/) together in seamless harmony:
@@ -18,7 +18,7 @@ Bringing [**Python®**](https://www.python.org/) and [**Julia**](https://juliala
1818

1919
⭐ If you like this, a GitHub star would be lovely thank you. ⭐
2020

21-
To get started, read the [documentation](https://cjdoris.github.io/PythonCall.jl/stable).
21+
To get started, read the [documentation](https://juliapy.github.io/PythonCall.jl/stable).
2222

2323
## Example 1: Calling Python from Julia
2424

@@ -27,7 +27,7 @@ In this example, we use the Julia module PythonCall from a [Pluto](https://githu
2727
- We use `pytable(df)` to convert it to a Python [Pandas DataFrame](https://pandas.pydata.org/).
2828
- We use the Python package [Seaborn](https://seaborn.pydata.org/) to produce a pair-plot, which is automatically displayed.
2929

30-
![Seaborn example screenshot](https://raw.githubusercontent.com/cjdoris/PythonCall.jl/main/examples/seaborn.png)
30+
![Seaborn example screenshot](https://raw.githubusercontent.com/JuliaPy/PythonCall.jl/main/examples/seaborn.png)
3131

3232
## Example 2: Calling Julia from Python
3333

@@ -36,7 +36,7 @@ In this example we use the Python module JuliaCall from an IPython notebook to t
3636
- We construct and train a neural network model using Julia's Flux.
3737
- We plot some sample output from the model using Python's MatPlotLib.
3838

39-
![Flux example screenshot](https://raw.githubusercontent.com/cjdoris/PythonCall.jl/main/examples/flux.png)
39+
![Flux example screenshot](https://raw.githubusercontent.com/JuliaPy/PythonCall.jl/main/examples/flux.png)
4040

4141
## What about PyCall?
4242

docs/make.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ makedocs(
5555
)
5656

5757
deploydocs(
58-
repo = "github.com/cjdoris/PythonCall.jl.git",
58+
repo = "github.com/JuliaPy/PythonCall.jl.git",
5959
)

docs/src/faq.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ Some rules if you are writing multithreaded code:
1313
If unhandled, these segfaults will result in termination of the process. To enable signal handling,
1414
set `PYTHON_JULIACALL_HANDLE_SIGNALS=yes` before any calls to import juliacall. This is equivalent
1515
to starting julia with `julia --handle-signals=yes`, the default behavior in Julia.
16-
See discussion [here](https://github.com/cjdoris/PythonCall.jl/issues/219#issuecomment-1605087024) for more information.
16+
See discussion [here](https://github.com/JuliaPy/PythonCall.jl/issues/219#issuecomment-1605087024) for more information.
1717
- You may still encounter problems.
1818

19-
Related issues: [#201](https://github.com/cjdoris/PythonCall.jl/issues/201), [#202](https://github.com/cjdoris/PythonCall.jl/issues/202)
19+
Related issues: [#201](https://github.com/JuliaPy/PythonCall.jl/issues/201), [#202](https://github.com/JuliaPy/PythonCall.jl/issues/202)
2020

2121
## Does it work on Apple silicon (ARM, M1, M2, ...)?
2222

@@ -48,7 +48,7 @@ Py(x).to_numpy()
4848

4949
If the array is being mutated, you will need to pass the argument `copy=false`.
5050

51-
Related issues: [#280](https://github.com/cjdoris/PythonCall.jl/issues/280)
51+
Related issues: [#280](https://github.com/JuliaPy/PythonCall.jl/issues/280)
5252

5353
## Heap corruption when using PyTorch
5454

@@ -62,7 +62,7 @@ Python(65251,0x104cf8580) malloc: *** set a breakpoint in malloc_error_break to
6262

6363
A solution is to ensure that `juliacall` is imported before `torch`.
6464

65-
Related issues: [#215](https://github.com/cjdoris/PythonCall.jl/issues/215)
65+
Related issues: [#215](https://github.com/JuliaPy/PythonCall.jl/issues/215)
6666

6767
## `ccall requires the compiler` error when importing some Python libraries
6868
On some systems, you may see an error like the following when import e.g. `matplotlib` before `juliacall`:
@@ -88,7 +88,7 @@ The solution is to either:
8888
* import `juliacall` before the other Python library, so that Julia's `libstdc++` is loaded
8989
* use a Python from a conda environment, which will have a newer `libstdc++` that is compatible with Julia's
9090

91-
Related issues: [#255](https://github.com/cjdoris/PythonCall.jl/issues/255)
91+
Related issues: [#255](https://github.com/JuliaPy/PythonCall.jl/issues/255)
9292

9393
## Can I use JuliaCall to run Julia inside applications with embedded Python?
9494

docs/src/juliacall.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ It's as simple as
77
pip install juliacall
88
```
99

10-
Developers may wish to clone the repo (https://github.com/cjdoris/PythonCall.jl) directly
10+
Developers may wish to clone the repo (https://github.com/JuliaPy/PythonCall.jl) directly
1111
and pip install the module in editable mode. You should add `"dev":true, "path":"../.."` to
1212
`python/juliacall/juliapkg.json` to ensure you use the development version of PythonCall
1313
in conjunction with JuliaCall.
@@ -73,7 +73,7 @@ What to read next:
7373

7474
## [Managing Julia dependencies](@id julia-deps)
7575

76-
JuliaCall manages its Julia dependencies using [JuliaPkg](https://github.com/cjdoris/PyJuliaPkg).
76+
JuliaCall manages its Julia dependencies using [JuliaPkg](https://github.com/JuliaPy/PyJuliaPkg).
7777

7878
It will automatically download a suitable version of Julia if required.
7979

@@ -98,7 +98,7 @@ Here is an example:
9898

9999
Alternatively you can use `add`, `rm`, etc. from JuliaPkg to edit this file.
100100

101-
See [JuliaPkg](https://github.com/cjdoris/PyJuliaPkg) for more details.
101+
See [JuliaPkg](https://github.com/JuliaPy/PyJuliaPkg) for more details.
102102

103103
## [Configuration](@id julia-config)
104104

docs/src/pythoncall.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Python: 'Hello, world!\n'
230230

231231
## [Configuration](@id pythoncall-config)
232232

233-
By default, PythonCall uses [CondaPkg.jl](https://github.com/cjdoris/CondaPkg.jl) to manage
233+
By default, PythonCall uses [CondaPkg.jl](https://github.com/JuliaPy/CondaPkg.jl) to manage
234234
its dependencies. This will install Conda and use it to create a Conda environment specific
235235
to your current Julia project containing Python and any required Python packages.
236236

@@ -288,7 +288,7 @@ If `conda`, `mamba` or `micromamba` is not in your `PATH` you will also need to
288288
## [Installing Python packages](@id python-deps)
289289

290290
Assuming you haven't [opted out](@ref pythoncall-config), PythonCall uses
291-
[CondaPkg.jl](https://github.com/cjdoris/CondaPkg.jl) to automatically install any required
291+
[CondaPkg.jl](https://github.com/JuliaPy/CondaPkg.jl) to automatically install any required
292292
Python packages.
293293

294294
This is as simple as
@@ -306,7 +306,7 @@ the project so that dependencies are automatically installed for everyone using
306306

307307
To add dependencies to a Julia package, just ensure the package project is activated first.
308308

309-
See the [CondaPkg.jl](https://github.com/cjdoris/CondaPkg.jl) documentation.
309+
See the [CondaPkg.jl](https://github.com/JuliaPy/CondaPkg.jl) documentation.
310310

311311
## Writing packages which depend on PythonCall
312312

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = 0.9.14
44
description = Julia and Python in seamless harmony
55
long_description = file: README.md
66
long_description_content_type = text/markdown
7-
url = http://github.com/cjdoris/PythonCall.jl
7+
url = http://github.com/JuliaPy/PythonCall.jl
88
classifiers =
99
Programming Language :: Python :: 3
1010
License :: OSI Approved :: MIT License

src/concrete/consts.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ for k in BUILTINS
185185
if k == :help
186186
# help is only available in interactive contexts (imported by the 'site' module)
187187
# see: https://docs.python.org/3/library/functions.html#help
188-
# see: https://github.com/cjdoris/PythonCall.jl/issues/248
188+
# see: https://github.com/JuliaPy/PythonCall.jl/issues/248
189189
push!(INIT_CONSTS_CODE, :(pycopy!(pybuiltins.$k, pygetattr(pybuiltinsmodule, $(string(k)), pybuiltins.None))))
190190
else
191191
push!(INIT_CONSTS_CODE, :(pycopy!(pybuiltins.$k, pygetattr(pybuiltinsmodule, $(string(k))))))

0 commit comments

Comments
 (0)