Skip to content

Commit 4167e17

Browse files
author
Christopher Doris
committed
rename master to main
1 parent 158e17b commit 4167e17

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Tests
22

33
on:
44
pull_request:
5-
branches: [master]
5+
branches: [main]
66
push:
7-
branches: [master]
7+
branches: [main]
88
tags: '*'
99

1010
jobs:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
<h1><img src="https://raw.githubusercontent.com/cjdoris/PythonCall.jl/master/docs/src/assets/logo.svg" alt="PythonCall.jl logo" style="width: 100px;"><br>PythonCall &amp;&nbsp;JuliaCall</h1>
1+
<h1><img src="https://raw.githubusercontent.com/cjdoris/PythonCall.jl/main/docs/src/assets/logo.svg" 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)
44
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://cjdoris.github.io/PythonCall.jl/stable)
55
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://cjdoris.github.io/PythonCall.jl/dev)
66
[![Test Status](https://github.com/cjdoris/PythonCall.jl/workflows/Tests/badge.svg)](https://github.com/cjdoris/PythonCall.jl/actions?query=workflow%3ATests)
7-
[![Codecov](https://codecov.io/gh/cjdoris/PythonCall.jl/branch/master/graph/badge.svg?token=A813UUIHGS)](https://codecov.io/gh/cjdoris/PythonCall.jl)
7+
[![Codecov](https://codecov.io/gh/cjdoris/PythonCall.jl/branch/main/graph/badge.svg?token=A813UUIHGS)](https://codecov.io/gh/cjdoris/PythonCall.jl)
88

99
Bringing [**Python®**](https://www.python.org/) and [**Julia**](https://julialang.org/) together in seamless harmony:
1010
- Call Python code from Julia and Julia code from Python via a symmetric interface.
@@ -26,7 +26,7 @@ In this example, we use the Julia module PythonCall from a [Pluto](https://githu
2626
- We use `pytable(df)` to convert it to a Python [Pandas DataFrame](https://pandas.pydata.org/).
2727
- We use the Python package [Seaborn](https://seaborn.pydata.org/) to produce a pair-plot, which is automatically displayed.
2828

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

3131
## Example 2: Calling Julia from Python
3232

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

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

4040
## What about PyCall?
4141

docs/src/juliacall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Here is an example:
8484
"version": "0.5, 0.6",
8585
"url": "http://github.com/JuliaLang/Example.jl",
8686
"path": "/path/to/the/package",
87-
"rev": "master",
87+
"rev": "main",
8888
"dev": false, // when true, uses Pkg.dev not Pkg.add
8989
}
9090
}

0 commit comments

Comments
 (0)