Skip to content

Commit

Permalink
prune project.toml and add compat entries (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielinteractive authored Apr 5, 2024
1 parent 809e5a2 commit 04ac628
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
15 changes: 9 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ authors = ["Daniel Sabanes Bove <daniel.sabanes_bove@roche.com>", "Kristian Broc
version = "0.0.1"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
ExpectationMaximization = "e1fe09cc-5134-44c2-a941-50f4cd97986a"
FreqTables = "da1fdf0e-e0ff-5433-a45f-9bb5ff651cb1"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Pluto = "c3e4b0f8-55cb-11ea-2926-15256bba5781"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Turing = "fce5fe82-541a-59a6-adf8-730c64b5f9a0"

[compat]
DataFrames = "1"
Distributions = "0.25"
ExpectationMaximization = "0.2"
SpecialFunctions = "2"
Statistics = "1"
Turing = "0"
julia = "1"
7 changes: 3 additions & 4 deletions src/SafetySignalDetection.jl
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
module SafetySignalDetection

using Turing
using StatsPlots
using DataFrames
using Distributions
using ExpectationMaximization
using LinearAlgebra
using SpecialFunctions
using Statistics
using LinearAlgebra
using ExpectationMaximization
using Turing

export
blinded_analysis_model,
Expand Down
10 changes: 5 additions & 5 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Test
using StableRNGs
using Random
using Distributions
using DataFrames
using CSV
using DataFrames
using Distributions
using Random
using StableRNGs
using Test
using Turing
using SafetySignalDetection

Expand Down

2 comments on commit 04ac628

@danielinteractive
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
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 updated: JuliaRegistries/General/104271

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.0.1 -m "<description of version>" 04ac628be91aa37c241dbabd183a8aec12e08a12
git push origin v0.0.1

Please sign in to comment.