Skip to content

Commit

Permalink
cleanup deps
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkelly committed Dec 30, 2022
1 parent 36c56dd commit b1a6eea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ authors = ["Steve Kelly <[email protected]> and contributors"]
version = "0.1.0"

[deps]
BufferedStreams = "e1450e63-4bb3-523b-b2a4-4ffa8c0fd77d"
CodecZstd = "6b39b394-51ab-5f42-8807-6242bab2b4c2"
SoapySDR = "4fa426e6-03fd-45b2-b2dd-25f726820c03"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[compat]
Unitful = "1"
CodecZstd = "0.7"
SoapySDR = "0.4,0.5"
Unitful = "1"
julia = "1"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "JET"]
test = ["Aqua", "Test", "JET"]
1 change: 0 additions & 1 deletion src/SoapySDRRecorder.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ module SoapySDRRecorder

using SoapySDR
using Unitful
using BufferedStreams
using CodecZstd
using Base.Threads

Expand Down
4 changes: 4 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
using SoapySDRRecorder
using Test
using JET
using Aqua

@testset "SoapySDRRecorder.jl" begin
# Write your tests here.
end


Aqua.test_all(SoapySDRRecorder;
ambiguities=false)
JET.report_package(SoapySDRRecorder)

2 comments on commit b1a6eea

@sjkelly
Copy link
Collaborator Author

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/74823

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.1.0 -m "<description of version>" b1a6eea563d69967816987c9533d526629d2c93c
git push origin v0.1.0

Please sign in to comment.