Skip to content

Commit d9ffc8e

Browse files
Merge branch 'NeuralEnsemble:master' into fix/tdt_streams
2 parents af98684 + 3f0225c commit d9ffc8e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+22784
-463
lines changed

.github/workflows/caches_cron_job.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ jobs:
6060
git config --global user.email "neo_ci@fake_mail.com"
6161
git config --global user.name "neo CI"
6262
python -m pip install -U pip # Official recommended way
63-
pip install --upgrade -e .
64-
pip install .[test]
63+
pip install --upgrade -e .[test]
6564
6665
create-data-cache-if-missing:
6766
name: Caching data env

.github/workflows/io-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# restore-key hits should result in `cache-hit` == 'false'
7979
if: steps.cache-conda-env.outputs.cache-hit != 'true'
8080
run: |
81-
conda env update neo-test-env --file environment_testing.yml
81+
conda env update --name neo-test-env --file environment_testing.yml --prune
8282
8383
- name: Configure git
8484
run: |

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,11 @@ neo/test/io/neurosharemergeio.py
6666
files_for_testing_neo
6767
/venv
6868
/neo/test/resources
69+
doc/examples
70+
doc/*.abf
71+
doc/*.png
72+
doc/*.plx
73+
doc/*.nev
74+
doc/*.ns5
75+
doc/*.nix
76+
doc/*.nwb

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ More information
4545
----------------
4646

4747
- Home page: http://neuralensemble.org/neo
48-
- Mailing list: https://groups.google.com/forum/?fromgroups#!forum/neuralensemble
48+
- Mailing list: http://neuralensemble.org/community
4949
- Documentation: http://neo.readthedocs.io/
5050
- Bug reports: https://github.com/NeuralEnsemble/python-neo/issues
5151

@@ -74,7 +74,7 @@ No. 785907 (Human Brain Project SGA2) and No. 945539 (Human Brain Project SGA3).
7474
.. _NiBabel: http://nipy.sourceforge.net/nibabel/
7575
.. _PyNN: http://neuralensemble.org/PyNN
7676
.. _quantities: http://pypi.python.org/pypi/quantities
77-
.. _`NeuralEnsemble mailing list`: http://groups.google.com/group/neuralensemble
77+
.. _`NeuralEnsemble mailing list`: http://neuralensemble.org/community
7878
.. _`issue tracker`: https://github.c
7979
.. _tridesclous: https://github.com/tridesclous/tridesclous
8080
.. _ephyviewer: https://github.com/NeuralEnsemble/ephyviewer

doc/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ help:
2929

3030
clean:
3131
-rm -rf $(BUILDDIR)/*
32+
-rm -rf source/examples
3233

3334
html:
3435
$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html

doc/example_data.txt

Lines changed: 10001 additions & 0 deletions
Large diffs are not rendered by default.

doc/example_data_about.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"filename": "example_data.txt",
3+
"delimiter": " ",
4+
"timecolumn": null,
5+
"units": "mV",
6+
"time_units": "ms",
7+
"sampling_rate": {
8+
"value": 1.0,
9+
"units": "kHz"
10+
},
11+
"method": "genfromtxt",
12+
"signal_group_mode": "all-in-one"
13+
}
File renamed without changes.
File renamed without changes.

doc/source/examples.rst renamed to doc/old_stuffs/examples.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ A set of examples in :file:`neo/examples/` illustrates the use of Neo classes.
1515

1616
.. literalinclude:: ../../examples/read_files_neo_rawio.py
1717

18-
.. literalinclude:: ../../examples/simple_plot_with_matplotlib.py
19-
18+
.. literalinclude:: ../../examples/plot_with_matplotlib.py

0 commit comments

Comments
 (0)