-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add upper bounds to Project.toml #5
Conversation
``` | ||
|
||
# Documentation | ||
|
||
The documentation of this package is not finished yet. For now, just check `examples` folder or use `Pkg.test("SNN")` to run all examples. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't part of documentation, so I removed it for now.
@@ -1,10 +1,9 @@ | |||
# Installation | |||
|
|||
```julia | |||
Pkg.clone("https://github.com/AStupidBear/SNN.jl.git") | |||
Pkg.build("SNN") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I removed the build code since it didn't seem necessary, and also didn't seem like a good idea to me personally (if we need Utils.jl
, we should depend on it explicitly).
@@ -8,3 +8,16 @@ Reexport = "189a3867-3050-52da-a836-e630ba90ab69" | |||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | |||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | |||
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" | |||
|
|||
[compat] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added these so we can get automatic merging of PRs to General.
module SNN | ||
module SpikingNeuralNetworks | ||
|
||
const SNN = SpikingNeuralNetworks |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we could export this, if you agree that it's useful to keep the shorter alias around.
No description provided.