-
Notifications
You must be signed in to change notification settings - Fork 135
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
PR from development to master - VERSION 1.0.7 #830
Merged
Merged
Conversation
This file contains 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
Without it tests/ will be installed as a top level Python module.
To fix this annoying note: "Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/setup-python@v4.."
…acts in color plots
The `imp` module has been removed in Python 3.12: https://docs.python.org/3/whatsnew/3.12.html#imp
The inplace=True keyword was removed from newer Pandas versions, thus the inplace option is replaced by re-assigning the variable, following Pandas recs (pandas-dev/pandas#57104) Changing df['popInd'].cat.set_categories(sim.net.pops.keys(), inplace=True) by df['popInd'] = df['popInd'].cat.set_categories(sim.net.pops.keys()) in analysis/spikes.py
fixed pointer id overflow on MPI (e.g. for gap junctions)
…overriden in individual conn rule
…List`-type connParams (but so far, only if `synsPerConn == 1` - need to elaborate more general approach)
Adding loading bar for cell and connectivity creation using tqdm package
Fixing double printing of Creating network sentence
define `cellInds` before reference in `syncLines` logic
ci: update setup-python action
fix(py312): remove `imp`
…pped dropped python 2 support
Pandas deprecated parameter fix + Loading Bar
add default padding (==1) for plotCSD, to avoid top/bottom edge artifacts in color plots
* fixed bug in conn, updated test/examples/* to use dynamic pathing * update CHANGES.md
…(beta version) (#819) * fixed bug in conn, updated test/examples/* to use dynamic pathing * update CHANGES.md * updated documentation with new batchtools (beta)
… loading bar. (#821) * Updated logic, bug fix cfg.progressBar = 2 will display all progress bars cfg.progressBar = 1 will call tqdm with progress bars w/ leave = 0 cfg.progressBar = 0 will disable the progress bar.
Removing the minimumdescent=False from the call to TextArea
Remove saveFileStep
Bug fix in scalebar - removing the use of the minimumdescent argument in the call to TextArea
Exlude tests from discovery / installation
…at has emerged with spack installation (EBRAINS platform). Will re-visit later.. This reverts commit e5aa9e8.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.