Skip to content

Commit

Permalink
Drop Julia v1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ytdHuang committed Nov 28, 2023
1 parent 5b6b017 commit 27b23ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Runtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
matrix:
# for Core functionalities
julia-version:
- '1'
- '1.9'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HierarchicalEOM"
uuid = "a62dbcb7-80f5-4d31-9a88-8b19fd92b128"
authors = ["Yi-Te Huang <[email protected]>"]
version = "1.2.1"
version = "1.3.0"

[deps]
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
Expand Down
5 changes: 2 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@ using HierarchicalEOM
using Test, Pkg, SparseArrays, LinearAlgebra

const GROUP = get(ENV, "GROUP", "All")
const HAS_EXTENSIONS = isdefined(Base, :get_extension)

include("utils.jl")

if GROUP == "All" || GROUP == "Core"
if (GROUP == "All") || GROUP == "Core"

@testset "Print version information" begin
@test HierarchicalEOM.versioninfo() == nothing
Expand Down Expand Up @@ -78,7 +77,7 @@ if GROUP == "HierarchicalEOM_CUDAExt"
end
end

if (GROUP == "All" || GROUP == "HierarchicalEOM_QOExt") && HAS_EXTENSIONS
if (GROUP == "All") || (GROUP == "HierarchicalEOM_QOExt")
Pkg.activate("QuantumOptics")
Pkg.develop(PackageSpec(path = dirname(@__DIR__)))
Pkg.instantiate()
Expand Down

2 comments on commit 27b23ec

@ytdHuang
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/96074

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 v1.3.0 -m "<description of version>" 27b23ec89168c517b00541f4298dfcf8dcab57a8
git push origin v1.3.0

Please sign in to comment.