Skip to content
This repository has been archived by the owner on Sep 2, 2023. It is now read-only.

Commit

Permalink
travis: preliminarily disable python3.8 pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
fphammerle committed Feb 12, 2020
1 parent 9bc5d2f commit 8d73afa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ python:
- 3.5
- 3.6
- 3.7
- 3.8

# required for python >= 3.7
dist: xenial
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Utilities",
Expand Down
6 changes: 2 additions & 4 deletions tests/test_surface.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,8 @@ def test_find_label_border_polygonal_chains():
surface.load_annotation_file(ANNOTATION_FILE_PATH)
precentral_label, = filter(lambda l: l.name == 'precentral',
surface.annotation.labels.values())
border_chains = list(surface.find_label_border_polygonal_chains(
precentral_label))
assert len(border_chains) == 1, border_chains
border_chain, = border_chains
border_chain, = surface.find_label_border_polygonal_chains(
precentral_label)
vertex_indices = list(border_chain.vertex_indices)
assert len(vertex_indices) == 418
min_index = vertex_indices.index(min(vertex_indices))
Expand Down

0 comments on commit 8d73afa

Please sign in to comment.