Skip to content

Commit 895324e

Browse files
authored
Merge pull request #2 from fmicompbio/bioc322
Bioc322
2 parents 6049a06 + 688436a commit 895324e

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
config:
23-
- { os: windows-latest, bioc: 'release'}
24-
- { os: macOS-latest, bioc: 'release', curlConfigPath: '/usr/bin/'}
25-
- { os: ubuntu-latest, bioc: 'release'}
23+
- { os: windows-latest, bioc: '3.22'}
24+
- { os: macOS-latest, bioc: '3.22', curlConfigPath: '/usr/bin/'}
25+
- { os: ubuntu-latest, bioc: '3.22'}
2626
#- { os: ubuntu-latest, image: 'bioconductor/bioconductor_docker:devel'}
2727

2828
env:

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: ezzarr
22
Type: Package
33
Title: Set up conda environment for ez-zarr
4-
Version: 0.1.8
5-
Date: 2025-09-24
4+
Version: 0.1.9
5+
Date: 2025-11-05
66
Authors@R: c(
77
person("Charlotte", "Soneson", email = "charlottesoneson@gmail.com",
88
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-3833-2169")),
@@ -17,7 +17,7 @@ Description: Provides basic functionality for creating and accessing a conda
1717
License: MIT + file LICENSE
1818
Encoding: UTF-8
1919
LazyData: true
20-
RoxygenNote: 7.3.2
20+
RoxygenNote: 7.3.3
2121
StagedInstall: no
2222
Imports:
2323
basilisk,

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# ezzarr 0.1.9
2+
3+
* Adapt to pyenv-based basilisk
4+
15
# ezzarr 0.1.8
26

37
* Update ez-zarr to v0.4.2

R/basilisk.R

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
#' @importFrom basilisk BasiliskEnvironment
22

3-
.conda_dependencies <- c(
4-
"python==3.12"
5-
)
63
.pip_dependencies <- c(
4+
"python==3.12",
75
"ez_zarr==0.4.2"
86
)
97

108
ezzarrenv <- BasiliskEnvironment(
119
envname = "ezzarr", pkgname = "ezzarr",
12-
packages = .conda_dependencies,
13-
channels = c("conda-forge"),
14-
pip = .pip_dependencies
10+
packages = .pip_dependencies
1511
)
1612

0 commit comments

Comments
 (0)