Skip to content

Commit db36742

Browse files
authored
Rename POT to PythonOT (#3)
1 parent aa937a9 commit db36742

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

.github/workflows/JuliaNightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ jobs:
5959
PYTHON: ${{ matrix.python }}
6060
- uses: julia-actions/julia-runtest@v1
6161
with:
62-
coverage: ${{ matrix.coverage }}
62+
coverage: false
6363
env:
6464
PYTHON: ${{ matrix.python }}

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "POT"
1+
name = "PythonOT"
22
uuid = "3c485715-4278-42b2-9b5f-8f00e43c12ef"
33
authors = ["David Widmann"]
44
version = "0.1.0"

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# POT.jl
1+
# PythonOT.jl
22

33
*Julia interface for the [Python Optimal Transport (POT) package](https://pythonot.github.io/)*
44

5-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://devmotion.github.io/POT.jl/stable)
6-
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://devmotion.github.io/POT.jl/dev)
7-
[![Build Status](https://github.com/devmotion/POT.jl/workflows/CI/badge.svg?branch=main)](https://github.com/devmotion/POT.jl/actions?query=workflow%3ACI+branch%3Amain)
8-
[![Build Status (Julia nightly)](https://github.com/devmotion/POT.jl/workflows/JuliaNightly/badge.svg?branch=main)](https://github.com/devmotion/POT.jl/actions?query=workflow%3AJuliaNightly+branch%3Amain)
9-
[![Coverage](https://codecov.io/gh/devmotion/POT.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/devmotion/POT.jl)
10-
[![Coverage](https://coveralls.io/repos/github/devmotion/POT.jl/badge.svg?branch=main)](https://coveralls.io/github/devmotion/POT.jl?branch=main)
5+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://devmotion.github.io/PythonOT.jl/stable)
6+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://devmotion.github.io/PythonOT.jl/dev)
7+
[![Build Status](https://github.com/devmotion/PythonOT.jl/workflows/CI/badge.svg?branch=main)](https://github.com/devmotion/PythonOT.jl/actions?query=workflow%3ACI+branch%3Amain)
8+
[![Build Status (Julia nightly)](https://github.com/devmotion/PythonOT.jl/workflows/JuliaNightly/badge.svg?branch=main)](https://github.com/devmotion/PythonOT.jl/actions?query=workflow%3AJuliaNightly+branch%3Amain)
9+
[![Coverage](https://codecov.io/gh/devmotion/PythonOT.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/devmotion/PythonOT.jl)
10+
[![Coverage](https://coveralls.io/repos/github/devmotion/PythonOT.jl/badge.svg?branch=main)](https://coveralls.io/github/devmotion/PythonOT.jl?branch=main)
1111
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
1212

1313
This package was originally part of [OptimalTransport.jl](https://github.com/zsteve/OptimalTransport.jl).

docs/Manifest.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
8484
[[NetworkOptions]]
8585
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
8686

87-
[[POT]]
87+
[[PythonOT]]
8888
path = ".."
8989
uuid = "3c485715-4278-42b2-9b5f-8f00e43c12ef"
9090
version = "0.1.0"

docs/Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
POT = "3c485715-4278-42b2-9b5f-8f00e43c12ef"
3+
PythonOT = "3c485715-4278-42b2-9b5f-8f00e43c12ef"
44

55
[compat]
66
Documenter = "0.26"
7-
POT = "0.1"
7+
PythonOT = "0.1"
88
julia = "1"

docs/make.jl

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ if haskey(ENV, "GITHUB_ACTIONS")
55
ENV["JULIA_DEBUG"] = "Documenter"
66
end
77

8-
using POT
8+
using PythonOT
99

10-
DocMeta.setdocmeta!(POT, :DocTestSetup, :(using POT); recursive=true)
10+
DocMeta.setdocmeta!(PythonOT, :DocTestSetup, :(using PythonOT); recursive=true)
1111

1212
makedocs(;
13-
modules=[POT],
13+
modules=[PythonOT],
1414
authors="David Widmann",
15-
repo="https://github.com/devmotion/POT.jl/blob/{commit}{path}#{line}",
16-
sitename="POT.jl",
15+
repo="https://github.com/devmotion/PythonOT.jl/blob/{commit}{path}#{line}",
16+
sitename="PythonOT.jl",
1717
format=Documenter.HTML(;
1818
prettyurls=get(ENV, "CI", "false") == "true",
19-
canonical="https://devmotion.github.io/POT.jl",
19+
canonical="https://devmotion.github.io/PythonOT.jl",
2020
assets=String[],
2121
),
2222
pages=["Home" => "index.md", "api.md"],
@@ -29,4 +29,4 @@ makedocs(;
2929
],
3030
)
3131

32-
deploydocs(; repo="github.com/devmotion/POT.jl", push_preview=true, devbranch="main")
32+
deploydocs(; repo="github.com/devmotion/PythonOT.jl", push_preview=true, devbranch="main")

docs/src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# POT.jl
1+
# PythonOT.jl
22

33
*Julia interface for the [Python Optimal Transport (POT) package](https://pythonot.github.io/)*

src/POT.jl renamed to src/PythonOT.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module POT
1+
module PythonOT
22

33
using PyCall: PyCall
44

test/runtests.jl

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ using Pkg
77
Pkg.instantiate()
88
end
99

10-
using POT
10+
using PythonOT
1111
using Documenter
1212
using Test
1313

14-
@testset "POT.jl" begin
14+
@testset "PythonOT.jl" begin
1515
@testset "doctests" begin
16-
DocMeta.setdocmeta!(POT, :DocTestSetup, :(using POT); recursive=true)
16+
DocMeta.setdocmeta!(PythonOT, :DocTestSetup, :(using PythonOT); recursive=true)
1717
doctest(
18-
POT;
18+
PythonOT;
1919
doctestfilters=[
2020
r"{([a-zA-Z0-9]+,\s?)+[a-zA-Z0-9]+}",
2121
r"(Array{[a-zA-Z0-9]+,\s?1}|Vector{[a-zA-Z0-9]+})",

0 commit comments

Comments
 (0)