Skip to content

Commit

Permalink
use julia 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinggong committed Oct 1, 2024
1 parent 69d52f9 commit de71bb4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1'
- '1.10'
os:
- ubuntu-latest
- macOS-latest
Expand All @@ -41,5 +40,5 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
coverage: ${{ matrix.version == '1.8' && matrix.os == 'ubuntu-latest' }}
coverage: ${{ matrix.version == '1.10' && matrix.os == 'ubuntu-latest' }}

2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: '1.8'
version: '1.10'
- uses: julia-actions/cache@v2
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.activate("docs"); Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
Expand Down
5 changes: 1 addition & 4 deletions src/estimators_nn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@ export NetworkArg,
)
Return a `NetworkArg` object with necessary parameters to construct a neural network model
and generate training samples for specifc biophysical model.
A test network architecture and training samples can be automaticlly determined from the modelling task by using function
and generate training samples for specifc biophysical model. A test network architecture and training samples can be automaticlly determined from the modelling task by using function
NetworkArg(model, protocol, params, prior_range, prior_dist, paralinks, noisetype, sigma_range, sigma_dist)
"""
Expand Down

0 comments on commit de71bb4

Please sign in to comment.