Skip to content

Commit

Permalink
Clean up deps, switch from REQUIRE to Project.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
quinnj committed May 9, 2019
1 parent 666d867 commit 3ac53e9
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
18 changes: 18 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name = "Missings"
uuid = "e1d29d7a-bbdc-5cf2-9ac0-f12de2c33e28"
version = "0.4.1"

[deps]
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "1"

[extras]
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]

1 change: 0 additions & 1 deletion REQUIRE

This file was deleted.

2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Test, Dates, InteractiveUtils, SparseArrays, Missings
using Test, SparseArrays, Missings

@testset "Missings" begin
x = Missings.replace([1, 2, missing, 4], 3)
Expand Down

2 comments on commit 3ac53e9

@quinnj
Copy link
Member Author

@quinnj quinnj commented on 3ac53e9 May 9, 2019

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

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.1 -m "<description of version>" 3ac53e982337b5c3e9ab625f69e3b5454b89d422
git push origin v0.4.1

Please sign in to comment.