10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9170c commit ee94733Copy full SHA for ee94733
skimage/data/__init__.py
@@ -125,7 +125,12 @@ def create_image_fetcher():
125
# This helps pooch understand that it should look in master
126
# to find the required files
127
pooch_version = __version__.replace('.dev', '+')
128
- url = "https://github.com/scikit-image/scikit-image/raw/{version}/skimage/"
+ if '+' in pooch_version:
129
+ url = ("https://github.com/scikit-image/scikit-image/raw/"
130
+ "{version}/skimage/")
131
+ else:
132
133
+ "v{version}/skimage/")
134
135
# Create a new friend to manage your sample data storage
136
image_fetcher = pooch.create(
0 commit comments