Skip to content

Commit

Permalink
Merge pull request #6 from medyan-dev/increase-julia-compat
Browse files Browse the repository at this point in the history
Increase julia compat to 1.7
  • Loading branch information
nhz2 authored Jan 29, 2024
2 parents 27f9a52 + 4240b59 commit 77000d1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 21 deletions.
17 changes: 5 additions & 12 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1.7'
- '1.9'
- '1.10'
- 'nightly'
os:
- ubuntu-latest
Expand All @@ -26,21 +27,13 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
show-versioninfo: true
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
Expand Down
8 changes: 2 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
name = "MutatePlainDataArray"
uuid = "3b0f367b-da20-4531-811a-c13cc92422b5"
authors = ["Haoran Ni <[email protected]> and contributors"]
version = "0.2.0"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
version = "0.3.0"

[compat]
Compat = "3.40, 4"
julia = "1.6"
julia = "1.7"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
1 change: 0 additions & 1 deletion src/MutatePlainDataArray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module MutatePlainDataArray

export aref

using Compat

#---------------------------------------
# Common functions.
Expand Down
3 changes: 1 addition & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using MutatePlainDataArray
using MutatePlainDataArray: MutatePlainDataArray, aref
using Test
using Compat

struct TAB
x::Int
Expand Down

2 comments on commit 77000d1

@nhz2
Copy link
Member Author

@nhz2 nhz2 commented on 77000d1 Jan 29, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

@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/99791

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 v0.3.0 -m "<description of version>" 77000d161f0d3d4693adb65f6646605931106aca
git push origin v0.3.0

Please sign in to comment.