Skip to content

Commit

Permalink
set Julia v1.10 as minimally required
Browse files Browse the repository at this point in the history
  • Loading branch information
omlins committed Oct 16, 2024
1 parent 7b309d2 commit 6bf88f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
fail-fast: false
matrix:
version:
- '1.9' # Minimum version supporting extensions
- '1' # Latest stable 1.x release of Julia
- '1.10' # Minimum version supporting Data module creation
- '1' # Latest stable 1.x release of Julia
#- 'nightly'
os:
- ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Enzyme = "0.11"
MacroTools = "0.5"
Polyester = "0.7"
StaticArrays = "1"
julia = "1.9" # Minimum version supporting extensions
julia = "1.10" # Minimum version supporting Data module creation

[extras]
TOML = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
Expand Down
2 changes: 1 addition & 1 deletion src/ParallelKernel/Data.jl
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ end
function Data_Fields(numbertype::DataType, indextype::DataType)
Fields_module = if (numbertype == NUMBERTYPE_NONE)
:(baremodule $MODULENAME_FIELDS
import ..$MODULENAME_DATA
import ..$MODULENAME_DATA # NOTE: this requires Julia >=1.10
import ..$MODULENAME_DATA: Array, NamedArrayTuple
$(generic_Fields_exprs())
$(T_Fields_exprs())
Expand Down

0 comments on commit 6bf88f8

Please sign in to comment.