Skip to content

Commit

Permalink
Move test dependencies to test Project, remove unnecessary StatsBase dep
Browse files Browse the repository at this point in the history
  • Loading branch information
brenhinkeller committed Dec 5, 2023
1 parent c5dc568 commit a0a6a69
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 0 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
StatGeochemBase = "61e559cd-58b4-4257-8528-26bb26ff2b9a"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
VectorizedStatistics = "3b853605-1c98-4422-8364-4bd93ee0529e"

[compat]
Expand All @@ -36,6 +33,5 @@ ProgressMeter = "1"
Reexport = "0.2, 1.0"
SpecialFunctions = "0.10, 1, 2"
StatGeochemBase = "0.5"
StatsBase = "0.28 - 0.34"
VectorizedStatistics = "0.5"
julia = "1"
3 changes: 3 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[deps]
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Chron
using Test, Statistics, StatsBase
using Test, Statistics

const make_plots = get(ENV, "MAKE_PLOTS", false) == "true"
@testset "Utilities" begin include("testUtilities.jl") end
Expand Down

2 comments on commit a0a6a69

@brenhinkeller
Copy link
Owner 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/96548

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.15 -m "<description of version>" a0a6a69e350365491b65e10d8251a2f06fcbbd67
git push origin v0.4.15

Please sign in to comment.