Skip to content

Commit

Permalink
add a project toml (#220)
Browse files Browse the repository at this point in the history
* add a project toml

* remove REQUIRE

* lower lower bound
  • Loading branch information
ChrisRackauckas authored and pkofod committed Jul 31, 2019
1 parent b2ff896 commit 45aa170
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*~
Manifest.toml
28 changes: 28 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name = "NLsolve"
uuid = "2774e3e8-f4cf-5e23-947b-6d7e65073b56"
version = "4.1.0"

[deps]
DiffEqDiffTools = "01453d9d-ee7c-5054-8395-0335cb756afa"
Distances = "b4f34e82-e78d-54a5-968a-f98e89d6e8f7"
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
LineSearches = "d3d80556-e9d4-5f37-9878-2ab0fcc64255"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NLSolversBase = "d41bc354-129a-5804-8e4c-c37616107c6c"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"

[compat]
DiffEqDiffTools = ">=0.9"
ForwardDiff = "0.10"
julia = "1"
LineSearches = "7"
NLSolversBase = "7"

[extras]
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
IterativeSolvers = "42fd0dbc-a981-5370-80f2-aaf504508153"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["DiffEqBase", "IterativeSolvers", "Test"]
7 changes: 0 additions & 7 deletions REQUIRE

This file was deleted.

2 changes: 0 additions & 2 deletions test/REQUIRE

This file was deleted.

2 comments on commit 45aa170

@pkofod
Copy link
Member

@pkofod pkofod commented on 45aa170 Jul 31, 2019

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

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 v4.1.0 -m "<description of version>" 45aa17082d64e15485d4a2a244e56a6d97b3a2da
git push origin v4.1.0

Please sign in to comment.