Skip to content

Commit f0849f3

Browse files
Merge pull request #235 from SciML/fm/wf
Workflows fixes
2 parents 247e5fc + f0c1a71 commit f0849f3

File tree

12 files changed

+21
-34
lines changed

12 files changed

+21
-34
lines changed

.JuliaFormatter.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
style = "sciml"
2-
format_markdown = true
2+
format_markdown = false
33
whitespace_in_kwargs = false
44
margin = 92
55
indent = 4

.github/workflows/Downgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
version: ${{ matrix.version }}
3434
- uses: julia-actions/julia-downgrade-compat@v1
3535
with:
36-
skip: Pkg,TOML
37-
- uses: julia-actions/cache@v1
36+
skip: Pkg, TOML, Test, Random, LinearAlgebra, Statistics
37+
- uses: julia-actions/cache@v2
3838
with:
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040
- uses: julia-actions/julia-buildpkg@v1

.github/workflows/TagBot.yml

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

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ RCLIBSVMExt = "LIBSVM"
2525
RCMLJLinearModelsExt = "MLJLinearModels"
2626

2727
[compat]
28-
Adapt = "3.3.3, 4"
28+
Adapt = "4.1.1"
2929
Aqua = "0.8"
3030
CellularAutomata = "0.0.2"
31-
DifferentialEquations = "7"
31+
DifferentialEquations = "7.15.0"
3232
Distances = "0.10"
3333
LIBSVM = "0.8"
3434
LinearAlgebra = "1.10"
3535
MLJLinearModels = "0.9.2, 0.10"
36-
NNlib = "0.8.4, 0.9"
36+
NNlib = "0.9.26"
3737
PartialFunctions = "1.2"
3838
Random = "1.10"
3939
Reexport = "1.2.2"

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<p align="center">
22
<img width="400px" src="docs/src/assets/logo.png"/>
33
</p>
4+
45
<div align="center">
56

67
[![Join the chat at https://julialang.zulipchat.com #sciml-bridged](https://img.shields.io/static/v1?label=Zulip&message=chat&color=9558b2&labelColor=389826)](https://julialang.zulipchat.com/#narrow/stream/279055-sciml-bridged)
@@ -11,9 +12,11 @@
1112
[![Build status](https://badge.buildkite.com/db8f91b89a10ad79bbd1d9fdb1340e6f6602a1c0ed9496d4d0.svg)](https://buildkite.com/julialang/reservoircomputing-dot-jl)
1213
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor%27s%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
1314
[![SciML Code Style](https://img.shields.io/static/v1?label=code%20style&message=SciML&color=9558b2&labelColor=389826)](https://github.com/SciML/SciMLStyle)
15+
1416
</div>
1517

1618
# ReservoirComputing.jl
19+
1720
ReservoirComputing.jl provides an efficient, modular and easy to use implementation of Reservoir Computing models such as Echo State Networks (ESNs). For information on using this package please refer to the [stable documentation](https://docs.sciml.ai/ReservoirComputing/stable/). Use the [in-development documentation](https://docs.sciml.ai/ReservoirComputing/dev/) to take a look at at not yet released features.
1821

1922
## Quick Example

docs/Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[deps]
2-
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
32
CellularAutomata = "878138dc-5b27-11ea-1a71-cb95d38d6b29"
43
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
54
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
@@ -12,12 +11,11 @@ ReservoirComputing = "7c2d2b1e-3dd4-11ea-355a-8f6a8116e294"
1211
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1312

1413
[compat]
15-
CUDA = "3, 4, 5"
1614
CellularAutomata = "0.0.2"
17-
DifferentialEquations = "7"
15+
DifferentialEquations = "7.15.0"
1816
Documenter = "1"
1917
OrdinaryDiffEq = "6"
2018
Plots = "1"
2119
PredefinedDynamicalSystems = "1"
22-
ReservoirComputing = "0.10"
23-
StatsBase = "0.33, 0.34"
20+
ReservoirComputing = "0.10.5"
21+
StatsBase = "0.34.4"

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Documenter, ReservoirComputing
22

3-
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml", force = true)
4-
cp("./docs/Project.toml", "./docs/src/assets/Project.toml", force = true)
3+
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml"; force=true)
4+
cp("./docs/Project.toml", "./docs/src/assets/Project.toml"; force=true)
55

66
ENV["PLOTS_TEST"] = "true"
77
ENV["GKSwstype"] = "100"

docs/src/api/esn_variations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
```@docs
1212
HybridESN
1313
KnowledgeModel
14-
```
14+
```

docs/src/api/inits.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Echo State Networks Initializers
2+
23
## Input layers
34

45
```@docs
@@ -17,4 +18,4 @@
1718
cycle_jumps
1819
simple_cycle
1920
pseudo_svd
20-
```
21+
```

docs/src/api/states.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
```@docs
2424
ReservoirComputing.create_states
25-
```
25+
```

0 commit comments

Comments
 (0)