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
8 changes: 8 additions & 0 deletions .github/workflows/AutoRegister.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: AutoRegister
on:
workflow_run: { workflows: ['Release Drafter'], types: [completed], branches: [main] }
jobs:
register:
permissions: { contents: write, issues: write }
uses: QAtlasHub/.github/.github/workflows/autoregister.yml@main
secrets: inherit
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ParallelManager"
uuid = "be946ad2-3cb3-4b6e-8f7e-4a5ecc3c255b"
version = "0.4.5"
version = "0.4.6"
authors = ["sota shimozono <shimozono-sota631@g.ecc.u-tokyo.ac.jp>"]

[deps]
Expand Down
20 changes: 6 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,22 +111,14 @@ Built from direct experience with the old-style HPC loop pattern used in

## Installation

This package depends on `ParamIO.jl` and `DataVault.jl`. During the
pre-registry phase, use `[sources]` with git URLs:

```toml
[deps]
DataVault = "23f5f8f6-b4da-40ee-8c72-c53b6c5de94f"
ParallelManager = "be946ad2-3cb3-4b6e-8f7e-4a5ecc3c255b"
ParamIO = "938a3ac2-d340-473c-bcf1-88af577e4ccf"

[sources]
ParamIO = {url = "https://github.com/QAtlasHub/ParamIO.jl.git"}
DataVault = {url = "https://github.com/QAtlasHub/DataVault.jl.git"}
ParallelManager = {url = "https://github.com/QAtlasHub/ParallelManager.jl.git"}
```julia
pkg> add ParallelManager
```

Then `julia --project -e 'using Pkg; Pkg.instantiate()'`.
Its dependencies `ParamIO.jl` and `DataVault.jl` are in the General registry too, so nothing
needs a `[sources]` entry.

Requires Julia v1.11+.

## Tests

Expand Down
Loading