-
Notifications
You must be signed in to change notification settings - Fork 3
Fix edge case in LaminarCurrentSourceDensity, use Poetry for builds, Python >= 3.10 #197
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
006d4eb
Fix edge case in LaminarCurrentSourceDensity
espenhgn 020975f
autopep8
espenhgn 821159f
Fix poetry extras: declare packages as optional dependencies before r…
Copilot 34d7a2e
update publish action
espenhgn 99b4a4e
Python >= 3.10
espenhgn a2f813c
Added test that cell compartments are shorter than CSD resolution
torbjone d840bb7
Add assertion for compartment length relative to CSD
torbjone cbc1f6d
Update README with documentation link and description
torbjone 793fa5c
Changed assert to UserWarning, to allow more flexibility in testing
torbjone 38dcab4
Merge branch 'espenhgn/issue196' of github.com:LFPy/LFPykit into espe…
torbjone ee7d501
Error in merging caused both warning and assert
torbjone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| version = "0.5.1" | ||
| version = "0.6.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| [build-system] | ||
| requires = ["poetry-core>=1.0.0"] | ||
| build-backend = "poetry.core.masonry.api" | ||
|
|
||
| [tool.poetry] | ||
| name = "LFPykit" | ||
| version = "0.6.0" | ||
| description = "Electrostatic models for multicompartment neuron models" | ||
| authors = ["LFPy-team <lfpy@users.noreply.github.com>"] | ||
|
|
||
| [tool.poetry.dependencies] | ||
| python = ">=3.10" | ||
| numpy = ">=1.15.2" | ||
| scipy = ">=1.5.2" | ||
| meautility = ">=1.5.1" | ||
| pytest = {version = "*", optional = true} | ||
| sympy = {version = "*", optional = true} | ||
| sphinx = {version = "*", optional = true} | ||
| numpydoc = {version = "*", optional = true} | ||
| sphinx_rtd_theme = {version = "*", optional = true} | ||
| recommonmark = {version = "*", optional = true} | ||
|
|
||
| [tool.poetry.extras] | ||
| tests = ["pytest", "sympy"] | ||
| docs = ["sphinx", "numpydoc", "sphinx_rtd_theme", "recommonmark"] | ||
|
|
||
| [tool.poetry.group.dev.dependencies] | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.