Skip to content

Commit

Permalink
Add Julia version to compat (#81)
Browse files Browse the repository at this point in the history
* Add Julia version to compat

This is needed for automatic registration of releases.

* Bump other dependencies

* Allow older versions to fix Julia 1.0

* Test latest Julia version
  • Loading branch information
nalimilan authored Dec 4, 2020
1 parent 73aa941 commit c8b9f88
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: julia

julia:
- 1.0
- 1.1
- 1
- nightly

after_success:
Expand Down
11 changes: 6 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "1"
PDMats = "0.10"
StatsBase = "0.33"
SpecialFunctions = "0.10"
SpecialFunctions = "0.8, 0.9, 0.10, 1"
FileIO = "1.2"
Clustering = "0.14"
RDatasets = "0.6"
RDatasets = "0.6, 0.7"
ScikitLearnBase = "0.5"
Compat = "3.6"
Distributions = "0.23"
Arpack = "0.4"
JLD2 = "0.2"
Distributions = "0.23, 0.24"
Arpack = "0.3, 0.4"
JLD2 = "0.2, 0.3"

2 comments on commit c8b9f88

@nalimilan
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/25016

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>" c8b9f885e1a8720b01cca6b1e7d94aff5b2d4ca4
git push origin v0.3.3

Please sign in to comment.