Skip to content

Commit a19ca15

Browse files
feat: add Pumas 2.8.0 to available products (#29)
Update PumasProductRegistry artifact to bundle-7deaa857 which includes Pumas 2.8.0. QCIS Review: - Product Owner has reviewed and approved the release - All release checks have passed. - Release notes are finalized: https://docs.pumas.ai/dev/releasenotes/ReleaseNotesPumas-2.8.0 Approved by QCIS for release.
1 parent 12dc994 commit a19ca15

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- windows-latest
4242
- macOS-latest
4343
product:
44-
- "Pumas@2.7.1"
44+
- "Pumas@2.8.0"
4545
- "DeepPumas@0.9.0"
4646

4747
steps:

Artifacts.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[PumasProductRegistry]
2-
git-tree-sha1 = "256bcf843d11abb9684d5f8d10522143285d6bf5"
2+
git-tree-sha1 = "0ae3d5319e65563cee0f89e0afb334ada7e22973"
33

44
[[PumasProductRegistry.download]]
5-
sha256 = "d5614de78ae9b8459fd1a18085287848aa9bdb92b8edae537eb45f73f86532c6"
6-
url = "https://pumas-product-bundles.s3.us-east-1.amazonaws.com/bundle-51fc0d9dde73b7d56433562a7995ccdc62c19569/PumasProductRegistry.tar.gz"
5+
sha256 = "0f60e745f60c3f9280dab80f14ae2e4e60bd245237e58f693fa3f6fbe4be7a7b"
6+
url = "https://pumas-product-bundles.s3.us-east-1.amazonaws.com/bundle-7deaa857cfacdee61d85d809a6f75384a611f0ea/PumasProductRegistry.tar.gz"

src/PkgREPL.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,26 +62,26 @@ function _define_specs()
6262
custom `juliaup` channel that is added, for example:
6363
6464
```
65-
pkg> pumas init Pumas@2.6.0
65+
pkg> pumas init Pumas@2.8.0
6666
6767
[...]
6868
6969
julia> exit()
7070
71-
$ julia +Pumas@2.6.0
71+
$ julia +Pumas@2.8.0
7272
```
7373
7474
If you specified a `path` when initializing then use
7575
7676
```
77-
$ julia +Pumas@2.6.0 --project=.
77+
$ julia +Pumas@2.8.0 --project=.
7878
```
7979
8080
Should you want to set this custom channel as the default then
8181
you can use the `juliaup default` command to do this:
8282
8383
```
84-
$ juliaup default Pumas@2.6.0
84+
$ juliaup default Pumas@2.8.0
8585
```
8686
""",
8787
)

test/runtests.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ using Test
1212
"Pumas@2.6.1",
1313
"Pumas@2.7.0",
1414
"Pumas@2.7.1",
15+
"Pumas@2.8.0",
1516
]
1617

1718
# Filter to single product when running in CI matrix
@@ -36,7 +37,7 @@ using Test
3637
mktempdir() do dir
3738
cd(dir) do
3839
# Test initialization in directory with existing files
39-
test_version = "Pumas@2.7.1"
40+
test_version = "Pumas@2.8.0"
4041
test_dir = "test_non_empty"
4142

4243
# Create directory with existing files
@@ -79,7 +80,7 @@ using Test
7980
@testset "Error cases for existing Project/Manifest files" begin
8081
mktempdir() do dir
8182
cd(dir) do
82-
test_version = "Pumas@2.7.1"
83+
test_version = "Pumas@2.8.0"
8384

8485
@testset "Error on existing Project.toml" begin
8586
test_dir = "test_existing_project"

0 commit comments

Comments
 (0)