Skip to content

Commit

Permalink
Fix error that was not raised
Browse files Browse the repository at this point in the history
  • Loading branch information
donishadsmith committed Nov 27, 2024
1 parent d11a140 commit 2886dcc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ noted in the changelog (i.e new functions or parameters, changes in parameter de
improvements/enhancements. Fixes and modifications will be backwards compatible.
- *.postN* : Consists of only metadata-related changes, such as updates to type hints or doc strings/documentation.

## [0.18.11] - 2024-11-27
### 🐛 Fixes
- An error in a setter method that did not use `raise`.

## [0.18.10] - 2024-11-27
### 🚀 New/Added
- Added deleter method for `subject_timeseries` and `concatenated_timeseries` properties
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# neurocaps
[![Latest Version](https://img.shields.io/pypi/v/neurocaps.svg)](https://pypi.python.org/pypi/neurocaps/)
[![Python Versions](https://img.shields.io/pypi/pyversions/neurocaps.svg)](https://pypi.python.org/pypi/neurocaps/)
[![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal)](https://doi.org/10.5281/zenodo.14231418)
[![DOI](https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal)](https://doi.org/10.5281/zenodo.14232395)
[![Github Repository](https://img.shields.io/badge/Source%20Code-neurocaps-purple)](https://github.com/donishadsmith/neurocaps)
[![Test Status](https://github.com/donishadsmith/neurocaps/actions/workflows/testing.yaml/badge.svg)](https://github.com/donishadsmith/neurocaps/actions/workflows/testing.yaml)
[![codecov](https://codecov.io/github/donishadsmith/neurocaps/graph/badge.svg?token=WS2V7I16WF)](https://codecov.io/github/donishadsmith/neurocaps)
Expand Down
4 changes: 2 additions & 2 deletions docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:alt: Python Versions

.. image:: https://img.shields.io/badge/DOI-10.5281%2Fzenodo.11642615-teal
:target: https://doi.org/10.5281/zenodo.14231418
:target: https://doi.org/10.5281/zenodo.14232395
:alt: DOI

.. image:: https://img.shields.io/badge/Source%20Code-neurocaps-purple
Expand Down Expand Up @@ -86,7 +86,7 @@ Citing
------
::

Smith, D. (2024). neurocaps. Zenodo. https://doi.org/10.5281/zenodo.14231418
Smith, D. (2024). neurocaps. Zenodo. https://doi.org/10.5281/zenodo.14232395

Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion neurocaps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
__all__=["analysis", "extraction"]

# Version in single place
__version__ = "0.18.10"
__version__ = "0.18.11"
2 changes: 1 addition & 1 deletion neurocaps/_utils/extraction/timeseriesextractorgetter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def space(self):

@space.setter
def space(self, new_space):
if not isinstance(new_space, str): TypeError("`space` must be a string.")
if not isinstance(new_space, str): raise TypeError("`space` must be a string.")
self._space = new_space

@property
Expand Down

0 comments on commit 2886dcc

Please sign in to comment.