Skip to content

Commit 8706104

Browse files
committed
Merge 'zarr-developers/master' into 'funkey/master'
2 parents d658c8e + 6e3e100 commit 8706104

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def __getattr__(cls, name):
6060

6161
numpydoc_show_class_members = False
6262
numpydoc_class_members_toctree = False
63-
issues_github_path = 'alimanfoo/numcodecs'
63+
issues_github_path = 'zarr-developers/numcodecs'
6464

6565
# Add any paths that contain templates here, relative to this directory.
6666
templates_path = ['_templates']

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ architecture::
4040

4141
To work with Numcodecs source code in development, install from GitHub::
4242

43-
$ git clone --recursive https://github.com/alimanfoo/numcodecs.git
43+
$ git clone --recursive https://github.com/zarr-developers/numcodecs.git
4444
$ cd numcodecs
4545
$ python setup.py install
4646

numcodecs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# initialize blosc
4949
try:
5050
ncores = multiprocessing.cpu_count()
51-
except OSError:
51+
except OSError: # pragma: no cover
5252
ncores = 1
5353
blosc.init()
5454
blosc.set_nthreads(min(8, ncores))

0 commit comments

Comments
 (0)