Skip to content

Commit

Permalink
Fix Compat Entries (#233)
Browse files Browse the repository at this point in the history
* Added julia compat

* Fix compatibility entries

* add StaticArray version

* Add diffeq compat requirements

* Fixed difeq requirements

* Added stochasticdiffeq compat

* Moving julia

* Added another compat

* Roll back to v0.3.0 for rerelease
  • Loading branch information
mehalter authored Nov 12, 2019
1 parent b017740 commit eb280cf
Showing 1 changed file with 18 additions and 13 deletions.
31 changes: 18 additions & 13 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name = "SemanticModels"
uuid = "f5ac2a72-33c7-5caf-b863-f02fefdcf428"
authors = ["James Fairbanks <[email protected]>", "Micah Halter <[email protected]>"]
version = "0.3.2"
version = "0.3.0"

[deps]
BoundaryValueDiffEq = "764a87c0-6b3e-53db-9096-fe964310641d"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Cassette = "7057c7e9-c182-5462-911a-8362d720325c"
Catlab = "134e5e36-593f-5add-ad60-77f754baafbe"
Expand All @@ -26,23 +27,16 @@ ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
Petri = "4259d249-1051-49fa-8328-3f8ab9391c33"
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
StochasticDiffEq = "789caeaf-c7a9-5a7d-9973-96adeb23e2a0"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"


[extras]
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
LsqFit = "2fda8390-95c7-5789-9bda-21331edee243"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "1.0"
BoundaryValueDiffEq = "2.3.0"
CSV = "<1.0"
Cassette = "<1.0"
Catlab = ">=0.3,<1.0"
Catlab = "0.3"
Colors = "<1.0"
DataFrames = "<1.0"
DataFramesMeta = "<1.0"
Expand All @@ -58,11 +52,22 @@ LinearAlgebra = "<2.0"
Logging = "<2.0"
MacroTools = "<1.0"
MetaGraphs = "<1.0"
ModelingToolkit = ">=0.6,<1.0"
ModelingToolkit = "0.6"
Petri = "<1.0"
Plots = "<1.0"
Random = "<2.0"
StaticArrays = "0.11"
StochasticDiffEq = "6.10.0"
Unitful = "<1.0"

[extras]
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
LsqFit = "2fda8390-95c7-5789-9bda-21331edee243"
Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["DifferentialEquations", "LsqFit", "Polynomials", "Printf", "Statistics", "Test"]

2 comments on commit eb280cf

@mehalter
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 created: JuliaRegistries/General/5343

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

Please sign in to comment.