Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 21d828b

Browse files
AurelienJaquierJaquier Aurélien Tristan
andauthored
remove pdf documentation (#412)
* remove pdf documentation * add bap and ais check to feature doc * add condition on mypy version for the tests * add tests for python 3.13 * use pyproject for cibuildwheel env variables * add indices features to doc * new example: settings * updated changelog --------- Co-authored-by: Jaquier Aurélien Tristan <aurelien.jaquier@epfl.ch>
1 parent a162b4a commit 21d828b

File tree

13 files changed

+836
-2142
lines changed

13 files changed

+836
-2142
lines changed

.github/workflows/build-wheels.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
arch: x86_64
2323
env:
2424
CIBW_BUILD: ${{ matrix.python }}*${{ matrix.arch }}
25-
CIBW_TEST_REQUIRES: pytest neo[neomatlabio]>=0.5.1 pytest-xdist>=3.3.1
26-
CIBW_TEST_COMMAND: pytest -sx -n auto {project}/tests
2725
CIBW_SKIP: "*-musllinux_*"
2826
steps:
2927
- uses: actions/checkout@v4

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414

1515
steps:
1616
- uses: actions/checkout@v4

CHANGELOG.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file.
55
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_,
66
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
77

8+
5.7.11 - 2024-11
9+
----------------
10+
11+
- Removed pdf documentation file. Reason: There was no substantial information in the pdf that were not already present in the official doc.
12+
- added an example for using settings, and added this example to the docs
13+
- added the (already implemented) following features to docs:
14+
15+
* check_ais_initiation
16+
* bpap_attenuation
17+
* peak_indices
18+
* AP_rise_indices
19+
* AP_end_indices
20+
* AP_fall_indices
21+
* min_AHP_indices
22+
* AP_begin_indices
23+
* min_between_peaks_indices
24+
* burst_begin_indices
25+
* burst_end_indices
26+
* ADP_peak_indices
27+
* interburst_min_indices
28+
* postburst_min_indices
29+
* postburst_slow_ahp_indices
30+
* postburst_fast_ahp_indices
31+
* postburst_adp_peak_indices
32+
* interburst_15percent_indices
33+
* interburst_20percent_indices
34+
* interburst_25percent_indices
35+
* interburst_30percent_indices
36+
* interburst_40percent_indices
37+
* interburst_60percent_indices
38+
* burst_ISI_indices
39+
840
5.7.9 - 2024-09
941
---------------
1042

docs/examples_to_rst.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ rm docs/source/extrafeats_example.rst
1111
rm docs/source/multiprocessing_example.rst
1212
rm docs/source/voltage_clamp.rst
1313
rm -rf docs/source/voltage_clamp_files
14+
rm docs/source/settings.rst
15+
rm -rf docs/source/settings_notebook_files
1416

1517
# convert
1618
jupyter nbconvert --to rst examples/sonata-network/sonata-network.ipynb
@@ -19,6 +21,7 @@ jupyter nbconvert --to rst examples/neo/load_nwb.ipynb
1921
jupyter nbconvert --to rst examples/extracellular/extrafeats_example.ipynb
2022
jupyter nbconvert --to rst examples/parallel/multiprocessing_example.ipynb
2123
jupyter nbconvert --to rst examples/voltage_clamp/voltage_clamp.ipynb
24+
jupyter nbconvert --to rst examples/settings/settings_notebook.ipynb
2225

2326
# move
2427
mv examples/sonata-network/sonata-network.rst docs/source/
@@ -30,4 +33,6 @@ mv examples/neo/load_nwb_files docs/source/
3033
mv examples/extracellular/extrafeats_example.rst docs/source/
3134
mv examples/parallel/multiprocessing_example.rst docs/source/
3235
mv examples/voltage_clamp/voltage_clamp.rst docs/source/
33-
mv examples/voltage_clamp/voltage_clamp_files docs/source/
36+
mv examples/voltage_clamp/voltage_clamp_files docs/source/
37+
mv examples/settings/settings_notebook.rst docs/source/settings.rst
38+
mv examples/settings/settings_notebook_files docs/source/

0 commit comments

Comments
 (0)