Skip to content

Commit 5128a36

Browse files
Release 0.3.0 (#65)
* update copyright year to 2023 * bump version * update install guide
1 parent 64cceac commit 5128a36

15 files changed

+48
-16
lines changed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2022, Institute of Neuroscience and Medicine (INM-6), Forschungszentrum Jülich
1+
Copyright (c) 2017-2023, Institute of Neuroscience and Medicine (INM-6), Forschungszentrum Jülich
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ https://viziphant.readthedocs.io/en/latest/
2323
For instructions on installing Viziphant, please see https://viziphant.readthedocs.io/en/latest/install.html
2424

2525
#### Copyright
26-
:copyright: 2017-2022 by the [Viziphant team](doc/authors.rst).
26+
:copyright: 2017-2023 by the [Viziphant team](doc/authors.rst).
2727

2828
#### License
2929
BSD 3-Clause License, see [LICENSE.txt](LICENSE.txt) for details.

doc/release_notes.rst

+32
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22
Release Notes
33
=============
44

5+
Viziphant 0.3.0 release notes
6+
*****************************
7+
8+
Documentation
9+
-------------
10+
* Fixed math display for equations in docs by using mathjax as renderer #59
11+
* Remove title "Viziphant" from navigation bar #60
12+
* Fix documentation, remove version cap on sphinxcontrib-bibtex, add new citation style #57
13+
* Fix navigation bar not showing up in documentation #64
14+
15+
New functionality and features
16+
------------------------------
17+
* Add parameter to exclude labels from plotting in add_event function. #50
18+
* Add limit check to add_event function to prevent labels outside bounds of figure. #49
19+
* GPFA function plot_dimensions_vs_time passing neo.Events to the plotting function to make it more robust and flexible #52
20+
21+
Bug fixes
22+
---------
23+
* Fix bug in add_events where only the last event was plotted. #53
24+
* Fix bug with newer versions of matplotlib by replacing gca() with add_subplot(). #56
25+
26+
Miscellaneous
27+
-------------
28+
* CI: update GitHub actions commands, remove deprecated commands #58
29+
* Add first unit test for ASSET plot_synchronous_events #63
30+
31+
Selected dependency changes
32+
---------------------------
33+
* Update python version, drop support for python 3.6 and 3.7 #51 #62
34+
* Update to quantities >0.14.0 #61
35+
36+
537
Viziphant 0.2.0 release notes
638
*****************************
739

viziphant/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0
1+
0.3.0

viziphant/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Elephant, which is a package for the analysis of neurophysiological data,
44
based on Neo.
55
"""
6-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
6+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
77
# License: Modified BSD, see LICENSE.txt for details.
88

99
from . import (asset, events, gpfa, patterns, rasterplot,

viziphant/asset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
plot_synchronous_events
1010
1111
"""
12-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
12+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1313
# License: Modified BSD, see LICENSE.txt for details.
1414

1515

viziphant/events.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
add_event
99
1010
"""
11-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
11+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1212
# License: Modified BSD, see LICENSE.txt.txt for details.
1313

1414

@@ -71,7 +71,7 @@ def add_event(axes, event, key=None, rotation=40, exclude=None):
7171
x_lim_min, x_lim_max = axes[-1].get_xlim()
7272
if x_lim_max < x_lim_min:
7373
x_lim_min, x_lim_max = x_lim_max, x_lim_min
74-
74+
7575
if exclude is None:
7676
exclude = []
7777

viziphant/gpfa.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plot_cumulative_shared_covariance
1515
plot_transform_matrix
1616
"""
17-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
17+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1818
# License: Modified BSD, see LICENSE.txt for details.
1919

2020
import itertools

viziphant/patterns.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
plot_patterns_statistics_lags
2525
2626
"""
27-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
27+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
2828
# License: Modified BSD, see LICENSE.txt for details.
2929

3030
from collections import defaultdict
@@ -169,7 +169,7 @@ def plot_patterns_statistics_lags(patterns, axes=None):
169169
"""
170170
if axes is None:
171171
fig, axes = plt.subplots()
172-
172+
173173
# 'times' and 'lags' share the same units;
174174
# however, only lag units are of interest
175175
units = patterns[0]['lags'].units

viziphant/rasterplot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
rasterplot_rates
1111
1212
"""
13-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
13+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1414
# License: Modified BSD, see LICENSE.txt for details.
1515

1616
import matplotlib.axes

viziphant/spike_train_correlation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
plot_cross_correlation_histogram
1010
1111
"""
12-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
12+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1313
# License: Modified BSD, see LICENSE.txt.txt for details.
1414

1515

viziphant/spike_train_synchrony.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
plot_spike_contrast
99
1010
"""
11-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
11+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1212
# License: Modified BSD, see LICENSE.txt for details.
1313

1414
import matplotlib.pyplot as plt

viziphant/statistics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
plot_instantaneous_rates_colormesh
1111
1212
"""
13-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
13+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1414
# License: Modified BSD, see LICENSE.txt.txt for details.
1515

1616
import matplotlib.pyplot as plt

viziphant/unitary_event_analysis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
plot_ue
1313
1414
"""
15-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
15+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
1616
# License: Modified BSD, see LICENSE.txt.txt for details.
1717

1818
import numpy as np

viziphant/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
1+
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
22
# License: Modified BSD, see LICENSE.txt for details.
33

44
from elephant.utils import check_same_units as check_same_units_single

0 commit comments

Comments
 (0)