Skip to content

Commit 4239334

Browse files
authored
Merge pull request #23 from abhro/update-documenter
Update documenter
2 parents 2e24d23 + caafc73 commit 4239334

File tree

9 files changed

+44
-106
lines changed

9 files changed

+44
-106
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/Build.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build JuliaPhysics Website
2+
3+
on:
4+
push:
5+
branches: [source]
6+
tags: '*'
7+
pull_request:
8+
9+
jobs:
10+
build:
11+
# These permissions are needed to:
12+
# - Deploy the documentation: https://documenter.juliadocs.org/stable/man/hosting/#Permissions
13+
# - Delete old caches: https://github.com/julia-actions/cache#usage
14+
permissions:
15+
actions: write
16+
contents: write
17+
pull-requests: read
18+
statuses: write
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: julia-actions/setup-julia@v2
23+
with:
24+
version: '1'
25+
show-versioninfo: true
26+
- uses: julia-actions/cache@v2
27+
- uses: julia-actions/julia-docdeploy@v1
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/build
2+
Manifest.toml

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

Manifest.toml

Lines changed: 0 additions & 89 deletions
This file was deleted.

Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[deps]
22
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
4+
[compat]
5+
Documenter = "1"

make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ deploydocs(
1818
repo = "github.com/JuliaPhysics/juliaphysics.github.io.git",
1919
branch = "master",
2020
devbranch = "source",
21+
push_preview = true,
2122
)

src/ecosystem/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Julia's Physics Ecosystem
1+
# [Julia's Physics Ecosystem](@id ecosystem)
22

33
## Dealing with physical quantities
44

@@ -59,7 +59,7 @@
5959
- [`QuantumInfo.jl`](https://github.com/BBN-Q/QuantumInfo.jl)
6060
- [`QuantumLab.jl`](https://github.com/vonDonnerstein/QuantumLab.jl) A workbench for Quantum Chemistry and Quantum Physics in Julia
6161
- [`QuantumOptics.jl`](https://qojulia.org/): Library for the numerical simulation of closed as well as open quantum systems.
62-
- [`QuantumBayesian.jl`](https://github.com/justindressel/QuantumBayesian.jl) Julia package for simulating quantum evolution efficiently, including the quantum Bayesian approach to stochastic measurement update and continuous readout.
62+
- [`QuantumBayesian.jl`](https://github.com/justindressel/QuantumBayesian.jl) Julia package for simulating quantum evolution efficiently, including the quantum Bayesian approach to stochastic measurement update and continuous readout.
6363
- [`MonteCarlo.jl`](https://github.com/crstnbr/MonteCarlo.jl) Classical and quantum Monte Carlo simulations in Julia
6464
- [`RandomQuantum.jl`](https://github.com/BBN-Q/RandomQuantum.jl) sample from various random matrix ensebles associated with quantum information applications.
6565
- [QuantumWalk.jl](https://github.com/iitis/QuantumWalk.jl) QuantumWalk.jl is a package for Julia programming language implementing models of quantum continuous and discrete walks used for performing quantum spatial search.

src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ On the following web pages we try to give you an effortless introduction into us
88
* tutorials and snippets,
99
* information about how to connect to the community.
1010

11-
Julia has a large ecosystem of packages built around scientific computing. In the section [Ecosystem](ecosystem) we've aimed to give an overview of packages in the ecosystem that can be useful for physical computing.
11+
Julia has a large ecosystem of packages built around scientific computing. In the section [Ecosystem](@ref ecosystem) we've aimed to give an overview of packages in the ecosystem that can be useful for physical computing.
1212

1313
JuliaPhysics itself hosts several packages, as well. You can find a comprehensive list on our [GitHub page](https://github.com/juliaphysics).
1414

0 commit comments

Comments
 (0)