Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
version:
- '1.5'
- 'nightly'
# - 'nightly'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -22,6 +22,8 @@ jobs:
exclude:
- os: macOS-latest
arch: x86
- os: windows-latest
version: 'nightly'
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand Down Expand Up @@ -60,9 +62,8 @@ jobs:
- run: |
julia --project=docs -e '
using Documenter: doctest
using InterpretableCompositionalNetworks
doctest(InterpretableCompositionalNetworks)'
using CompositionalNetworks
doctest(CompositionalNetworks)'
- run: julia --project=docs docs/make.jl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
*.jl.cov
*.jl.mem
/docs/build/

_git2_*
.gitignore
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name = "InterpretableCompositionalNetworks"
name = "CompositionalNetworks"
uuid = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
authors = ["Jean-François Baffier"]
version = "0.1.0"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# InterpretableCompositionalNetworks
# CompositionalNetworks

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://azzaare.github.io/InterpretableCompositionalNetworks.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://azzaare.github.io/InterpretableCompositionalNetworks.jl/dev)
[![Build Status](https://github.com/azzaare/InterpretableCompositionalNetworks.jl/workflows/CI/badge.svg)](https://github.com/azzaare/InterpretableCompositionalNetworks.jl/actions)
[![Coverage](https://codecov.io/gh/azzaare/InterpretableCompositionalNetworks.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/azzaare/InterpretableCompositionalNetworks.jl)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaConstraints.github.io/CompositionalNetworks.jl/dev)
[![Build Status](https://github.com/JuliaConstraints/CompositionalNetworks.jl/workflows/CI/badge.svg)](https://github.com/JuliaConstraints/CompositionalNetworks.jl/actions)
[![Coverage](https://codecov.io/gh/JuliaConstraints/CompositionalNetworks.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaConstraints/CompositionalNetworks.jl)
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)
2 changes: 1 addition & 1 deletion docs/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ version = "0.1.1"
deps = ["Markdown"]
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

[[InterpretableCompositionalNetworks]]
[[CompositionalNetworks]]
path = ".."
uuid = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
version = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
InterpretableCompositionalNetworks = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
CompositionalNetworks = "4b67e4b5-442d-4ef5-b760-3f5df3a57537"
12 changes: 6 additions & 6 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using InterpretableCompositionalNetworks
using CompositionalNetworks
using Documenter

makedocs(;
modules=[InterpretableCompositionalNetworks],
modules=[CompositionalNetworks],
authors="Jean-François Baffier",
repo="https://github.com/azzaare/InterpretableCompositionalNetworks.jl/blob/{commit}{path}#L{line}",
sitename="InterpretableCompositionalNetworks.jl",
repo="https://github.com/JuliaConstraints/CompositionalNetworks.jl/blob/{commit}{path}#L{line}",
sitename="CompositionalNetworks.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://azzaare.github.io/InterpretableCompositionalNetworks.jl",
canonical="https://JuliaConstraints.github.io/CompositionalNetworks.jl",
assets=String[],
),
pages=[
Expand All @@ -17,5 +17,5 @@ makedocs(;
)

deploydocs(;
repo="github.com/azzaare/InterpretableCompositionalNetworks.jl",
repo="github.com/JuliaConstraints/CompositionalNetworks.jl",
)
5 changes: 5 additions & 0 deletions src/CompositionalNetworks.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module CompositionalNetworks

# Write your package code here.

end
5 changes: 0 additions & 5 deletions src/InterpretableCompositionalNetworks.jl

This file was deleted.

4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using InterpretableCompositionalNetworks
using CompositionalNetworks
using Test

@testset "InterpretableCompositionalNetworks.jl" begin
@testset "CompositionalNetworks.jl" begin
# Write your tests here.
end