Skip to content

Commit

Permalink
Release 0.3.0 (#65)
Browse files Browse the repository at this point in the history
* update copyright year to 2023

* bump version

* update install guide
  • Loading branch information
Moritz-Alexander-Kern authored Feb 24, 2023
1 parent 64cceac commit 5128a36
Show file tree
Hide file tree
Showing 15 changed files with 48 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017-2022, Institute of Neuroscience and Medicine (INM-6), Forschungszentrum Jülich
Copyright (c) 2017-2023, Institute of Neuroscience and Medicine (INM-6), Forschungszentrum Jülich
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ https://viziphant.readthedocs.io/en/latest/
For instructions on installing Viziphant, please see https://viziphant.readthedocs.io/en/latest/install.html

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

#### License
BSD 3-Clause License, see [LICENSE.txt](LICENSE.txt) for details.
Expand Down
32 changes: 32 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,38 @@
Release Notes
=============

Viziphant 0.3.0 release notes
*****************************

Documentation
-------------
* Fixed math display for equations in docs by using mathjax as renderer #59
* Remove title "Viziphant" from navigation bar #60
* Fix documentation, remove version cap on sphinxcontrib-bibtex, add new citation style #57
* Fix navigation bar not showing up in documentation #64

New functionality and features
------------------------------
* Add parameter to exclude labels from plotting in add_event function. #50
* Add limit check to add_event function to prevent labels outside bounds of figure. #49
* GPFA function plot_dimensions_vs_time passing neo.Events to the plotting function to make it more robust and flexible #52

Bug fixes
---------
* Fix bug in add_events where only the last event was plotted. #53
* Fix bug with newer versions of matplotlib by replacing gca() with add_subplot(). #56

Miscellaneous
-------------
* CI: update GitHub actions commands, remove deprecated commands #58
* Add first unit test for ASSET plot_synchronous_events #63

Selected dependency changes
---------------------------
* Update python version, drop support for python 3.6 and 3.7 #51 #62
* Update to quantities >0.14.0 #61


Viziphant 0.2.0 release notes
*****************************

Expand Down
2 changes: 1 addition & 1 deletion viziphant/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.3.0
2 changes: 1 addition & 1 deletion viziphant/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Elephant, which is a package for the analysis of neurophysiological data,
based on Neo.
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

from . import (asset, events, gpfa, patterns, rasterplot,
Expand Down
2 changes: 1 addition & 1 deletion viziphant/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
plot_synchronous_events
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.


Expand Down
4 changes: 2 additions & 2 deletions viziphant/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
add_event
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt.txt for details.


Expand Down Expand Up @@ -71,7 +71,7 @@ def add_event(axes, event, key=None, rotation=40, exclude=None):
x_lim_min, x_lim_max = axes[-1].get_xlim()
if x_lim_max < x_lim_min:
x_lim_min, x_lim_max = x_lim_max, x_lim_min

if exclude is None:
exclude = []

Expand Down
2 changes: 1 addition & 1 deletion viziphant/gpfa.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plot_cumulative_shared_covariance
plot_transform_matrix
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

import itertools
Expand Down
4 changes: 2 additions & 2 deletions viziphant/patterns.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
plot_patterns_statistics_lags
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

from collections import defaultdict
Expand Down Expand Up @@ -169,7 +169,7 @@ def plot_patterns_statistics_lags(patterns, axes=None):
"""
if axes is None:
fig, axes = plt.subplots()

# 'times' and 'lags' share the same units;
# however, only lag units are of interest
units = patterns[0]['lags'].units
Expand Down
2 changes: 1 addition & 1 deletion viziphant/rasterplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
rasterplot_rates
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

import matplotlib.axes
Expand Down
2 changes: 1 addition & 1 deletion viziphant/spike_train_correlation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
plot_cross_correlation_histogram
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt.txt for details.


Expand Down
2 changes: 1 addition & 1 deletion viziphant/spike_train_synchrony.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
plot_spike_contrast
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

import matplotlib.pyplot as plt
Expand Down
2 changes: 1 addition & 1 deletion viziphant/statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
plot_instantaneous_rates_colormesh
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt.txt for details.

import matplotlib.pyplot as plt
Expand Down
2 changes: 1 addition & 1 deletion viziphant/unitary_event_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
plot_ue
"""
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt.txt for details.

import numpy as np
Expand Down
2 changes: 1 addition & 1 deletion viziphant/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017-2022 by the Viziphant team, see `doc/authors.rst`.
# Copyright 2017-2023 by the Viziphant team, see `doc/authors.rst`.
# License: Modified BSD, see LICENSE.txt for details.

from elephant.utils import check_same_units as check_same_units_single
Expand Down

0 comments on commit 5128a36

Please sign in to comment.