Skip to content

Commit

Permalink
Drop support for Julia 1.9 (#93)
Browse files Browse the repository at this point in the history
* Drop support for Julia 1.9

* Fix job name

* Fix name

* Fix GitHub runner OS
  • Loading branch information
efaulhaber authored Jan 16, 2025
1 parent eb44c17 commit 75e2c63
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 19 deletions.
20 changes: 6 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,27 +34,19 @@ concurrency:

jobs:
build:
name: Run Tests (Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }})
runs-on: ubuntu-latest
name: Run Tests (Julia ${{ matrix.version }} - ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
# Don't cancel all running jobs when one job fails
fail-fast: false
matrix:
version:
- '1.9'
- '1'
- 'min' # the earliest supported version compatible with the project
- '1' # the latest stable 1.x release
os:
- ubuntu-latest
arch:
- x64
include:
# Also run tests on Windows and macOS-ARM, but only with the latest Julia version
- version: '1'
os: windows-latest
arch: x64
- version: '1'
os: macos-14
arch: arm64
- windows-latest
- macos-14

steps:
- name: Check out project
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PointNeighbors"
uuid = "1c4d5385-0a27-49de-8e2c-43b175c8985c"
authors = ["Erik Faulhaber <[email protected]>"]
version = "0.4.6-dev"

This comment has been minimized.

Copy link
@efaulhaber

efaulhaber Jan 16, 2025

Author Member

This comment has been minimized.

Copy link
@efaulhaber

efaulhaber Jan 16, 2025

Author Member
version = "0.4.6"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
Expand All @@ -14,12 +14,12 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
Adapt = "3, 4"
Atomix = "0.1, 1"
GPUArraysCore = "0.1, 0.2"
Adapt = "4"
Atomix = "1"
GPUArraysCore = "0.2"
KernelAbstractions = "0.9"
LinearAlgebra = "1"
Polyester = "0.7.5"
Reexport = "1"
StaticArrays = "1"
julia = "1.9"
julia = "1.10"

2 comments on commit 75e2c63

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Error while trying to register: Action not recognized: release

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

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.4.6 -m "<description of version>" 75e2c63c3641faf345530d429c96ff554f635921
git push origin v0.4.6

Please sign in to comment.