Skip to content

Commit 899f5b8

Browse files
authored
Simplify missing value and update CI use pre instead of nightly. (#24)
* simplify missing value and update CI use pre instead of nightly. * Set architecture to default to remove CI warning.
1 parent 516b2f0 commit 899f5b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
version:
2626
- 'lts'
2727
- '1'
28-
- 'nightly'
28+
- 'pre'
2929
os:
3030
- ubuntu-latest
3131
- macOS-latest
3232
- windows-latest
3333
arch:
34-
- x64
34+
- default
3535
steps:
3636
- uses: actions/checkout@v4
3737
- uses: julia-actions/setup-julia@v2

src/InterfaceDataModel/variable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function default_cf_attributes(
4646
missing_value = _auto_convert(T, missing_value)
4747
end
4848

49-
cf_attributes[:missing_value] = [missing_value]
49+
cf_attributes[:missing_value] = missing_value
5050

5151
if !fixed_size(R, field)
5252
cf_attributes[:_FillValue] = missing_value

0 commit comments

Comments
 (0)