Skip to content

Commit

Permalink
Release: 3.3.2 (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
adrien-berchet authored May 4, 2023
1 parent 0dc72d6 commit d4d5ecb
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [3.3.2](https://github.com/BlueBrain/NeuroTS/compare/3.3.1..3.3.2)

> 4 May 2023
### Fixes

- Raise clear errors for empty angles (Adrien Berchet - [#65](https://github.com/BlueBrain/NeuroTS/pull/65))

## [3.3.1](https://github.com/BlueBrain/NeuroTS/compare/3.3.0..3.3.1)

> 13 March 2023
### Fixes

- Convert apical_sections to new id (Alexis Arnaudon - [#60](https://github.com/BlueBrain/NeuroTS/pull/60))

## [3.3.0](https://github.com/BlueBrain/NeuroTS/compare/3.2.0..3.3.0)

> 13 March 2023
Expand Down
7 changes: 5 additions & 2 deletions tests/test_extract_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,14 @@ def test_threshold_too_small(self):
)

def test_missing_neurite_type(self):
with pytest.raises(NeuroTSError):
with pytest.raises(
NeuroTSError,
match="The given population does contain any tree of axon type.",
):
extract_input.distributions(
os.path.join(_PATH, "diam_simple.swc"),
feature="path_distances",
neurite_types=["basal_dendrite", "apical_dendrite"],
neurite_types=["axon"],
)

def test_trunk_length(self, filename):
Expand Down

0 comments on commit d4d5ecb

Please sign in to comment.