Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
test: try separating the test Project files
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Aug 3, 2024
1 parent 57e3439 commit f259e07
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.9']
version: ['1.10']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
Expand Down
15 changes: 3 additions & 12 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
name = "LuxCUDA"
uuid = "d0bbae9a-e099-4d5b-a835-1c6931763bda"
authors = ["Avik Pal <[email protected]> and contributors"]
version = "0.3.2"
version = "0.3.3"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd"

[compat]
Aqua = "0.8"
CUDA = "5.1"
CUDA = "5.3.2"
Reexport = "1"
cuDNN = "1.3"
Test = "1.9"
julia = "1.9"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Aqua", "Test"]
julia = "1.10"
7 changes: 7 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
Aqua = "0.8.4"
Test = "1.10"
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ using Aqua, LuxCUDA, Test

@test LuxCUDA.functional() isa Bool

Aqua.test_all(LuxCUDA; ambiguities=false)
Aqua.test_all(LuxCUDA; ambiguities=false, undefined_exports=false)
Aqua.test_ambiguities(LuxCUDA)
end

2 comments on commit f259e07

@avik-pal
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/112363

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.3 -m "<description of version>" f259e07df0636d9409a460ab3d111c24fe6c2e21
git push origin v0.3.3

Please sign in to comment.