Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: 3.3.2 #66

Merged
merged 2 commits into from
May 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
7 changes: 5 additions & 2 deletions tests/test_extract_input.py
Original file line number Diff line number Diff line change
@@ -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):