Skip to content

Commit c14aef5

Browse files
committed
Merge branch 'master' of github.com:scalableminds/webknossos-libs
2 parents 7a8764a + 9647511 commit c14aef5

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,27 @@ updates:
44
directory: "/wkcuber"
55
schedule:
66
interval: daily
7-
open-pull-requests-limit: 10
7+
ignore:
8+
- dependency-name: "*"
9+
- package-ecosystem: pip
10+
directory: "/cluster_tools"
11+
schedule:
12+
interval: daily
13+
open-pull-requests-limit: 3
814
reviewers:
915
- philippotto
10-
allow:
11-
- dependency-name: cluster_tools
12-
- dependency-name: wkw
1316
- package-ecosystem: pip
14-
directory: "/cluster_tools"
17+
directory: "/webknossos"
1518
schedule:
1619
interval: daily
17-
open-pull-requests-limit: 10
20+
open-pull-requests-limit: 3
21+
ignore:
22+
- dependency-name: "scikit-image"
1823
reviewers:
19-
- philippotto
24+
- markbader
25+
- package-ecosystem: pip
26+
directory: "/docs"
27+
schedule:
28+
interval: daily
29+
ignore:
30+
- dependency-name: "*"

webknossos/Changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ For upgrade instructions, please check the respective _Breaking Changes_ section
2323
### Changed
2424
- Moved functional parts of merge volume annotation CLI to Dataset and Annotation classes. [#1055](https://github.com/scalableminds/webknossos-libs/pull/1055)
2525
- Set a new max value for test_align_with_mag_against_numpy_implementation to avoid failures due to high numbers. [#1082](https://github.com/scalableminds/webknossos-libs/pull/1082)
26+
- Updated dependabot.yml [#1087](https://github.com/scalableminds/webknossos-libs/pull/1087)
27+
- Make lookup for supported suffixes case-insensitive. [#1100](https://github.com/scalableminds/webknossos-libs/pull/1100)
2628

2729
### Fixed
2830
- Fixed an issue with downloading annotations through the Command Line Interface. [#1083](https://github.com/scalableminds/webknossos-libs/pull/1083)

webknossos/webknossos/dataset/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ def from_images(
624624
input_files = [
625625
i.relative_to(input_upath)
626626
for i in input_upath.glob("**/*")
627-
if i.is_file() and i.suffix.lstrip(".") in valid_suffixes
627+
if i.is_file() and i.suffix.lstrip(".").lower() in valid_suffixes
628628
]
629629
if len(input_files) == 0:
630630
raise ValueError(

0 commit comments

Comments
 (0)