Skip to content

Commit

Permalink
CI only up to Julia 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
arturgower committed Dec 9, 2021
1 parent c2258c2 commit f6f890d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
version:
- '1.5' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
- '1.6' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
- 'nightly'
os:
- ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ HCubature = "1"
Interpolations = "0.12, ^0.13"
IterTools = "1"
MDBM = "0.1"
MultipleScattering = "^0.1.10"
MultipleScattering = "^0.1.11"
OffsetArrays = "^0.23, 1"
Optim = "0.22, 1"
RecipesBase = "1.0"
Reexport = "0.2, 1.0"
SpecialFunctions = "0.3, 0.7, 0.8, 0.9, 0.10, 1.0, 2.0"
StaticArrays = "0.8,0.9,0.10,0.11,0.12"
StaticArrays = "0.12, 1"
julia = "^1.5"

[extras]
Expand Down

3 comments on commit f6f890d

@arturgower
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For now the package MDBM requires StaticArrays below version 1, which is causing issues updating other packages to be compatible with Julia 1.7. For this reason, for now, I've restricted testing up to Julia 1.6.

@arturgower
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/50245

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.2 -m "<description of version>" f6f890df820db89d24c5fe9a19ef7b81e6d65d6e
git push origin v0.3.2

Please sign in to comment.