Skip to content

Commit d8bac59

Browse files
committed
alimanfoo -> zarr-developers
1 parent c61a561 commit d8bac59

File tree

7 files changed

+29
-26
lines changed

7 files changed

+29
-26
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Alistair Miles
3+
Copyright (c) 2018 Zarr Developers <https://github.com/zarr-developers>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ more information.
99
.. image:: https://readthedocs.org/projects/zarr/badge/?version=latest
1010
:target: http://zarr.readthedocs.io/en/latest/?badge=latest
1111

12-
.. image:: https://travis-ci.org/alimanfoo/zarr.svg?branch=master
13-
:target: https://travis-ci.org/alimanfoo/zarr
12+
.. image:: https://travis-ci.org/zarr-developers/zarr.svg?branch=master
13+
:target: https://travis-ci.org/zarr-developers/zarr
1414

1515
.. image:: https://ci.appveyor.com/api/projects/status/7d4iko59k8hpbbik?svg=true
16-
:target: https://ci.appveyor.com/project/alimanfoo/zarr
16+
:target: https://ci.appveyor.com/project/zarr-developers/zarr
1717

18-
.. image:: https://coveralls.io/repos/github/alimanfoo/zarr/badge.svg?branch=master
19-
:target: https://coveralls.io/github/alimanfoo/zarr?branch=master
18+
.. image:: https://coveralls.io/repos/github/zarr-developers/zarr/badge.svg?branch=master
19+
:target: https://coveralls.io/github/zarr-developers/zarr?branch=master

docs/conf.py

Lines changed: 4 additions & 4 deletions
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/zarr'
63+
issues_github_path = 'zarr-developers/zarr'
6464

6565
# Add any paths that contain templates here, relative to this directory.
6666
templates_path = ['_templates']
@@ -78,8 +78,8 @@ def __getattr__(cls, name):
7878

7979
# General information about the project.
8080
project = 'zarr'
81-
copyright = '2016, Alistair Miles'
82-
author = 'Alistair Miles'
81+
copyright = '2018, Zarr Developers'
82+
author = 'Zarr Developers'
8383

8484
# The version info for the project you're documenting, acts as replacement for
8585
# |version| and |release|, also used in various other places throughout the
@@ -258,7 +258,7 @@ def __getattr__(cls, name):
258258
# author, documentclass [howto, manual, or own class]).
259259
latex_documents = [
260260
(master_doc, 'zarr.tex', 'zarr Documentation',
261-
'Alistair Miles', 'manual'),
261+
'Zarr Developers', 'manual'),
262262
]
263263

264264
# The name of an image file (relative to this directory) to place at the top of

docs/index.rst

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Status
2222
------
2323

2424
Zarr is still a young project. Feedback and bug reports are very welcome, please get in touch via
25-
the `GitHub issue tracker <https://github.com/alimanfoo/zarr/issues>`_.
25+
the `GitHub issue tracker <https://github.com/zarr-developers/zarr/issues>`_. See
26+
:doc:`contributing` for further information about contributing to Zarr.
2627

2728
Installation
2829
------------
@@ -42,7 +43,7 @@ Alternatively, install Zarr via conda::
4243

4344
To work with Zarr source code in development, install from GitHub::
4445

45-
$ git clone --recursive https://github.com/alimanfoo/zarr.git
46+
$ git clone --recursive https://github.com/zarr-developers/zarr.git
4647
$ cd zarr
4748
$ python setup.py install
4849

@@ -61,6 +62,12 @@ Contents
6162
api
6263
spec
6364
release
65+
contributing
66+
67+
Projects using Zarr
68+
-------------------
69+
70+
If you are using Zarr, we would [love to hear about it](https://github.com/zarr-developers/zarr/issues/228).
6471

6572
Acknowledgments
6673
---------------

docs/release.rst

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Enhancements
1818
properties that enable a selection of items in an array to be retrieved or
1919
updated. See the :ref:`tutorial_indexing` tutorial section for more
2020
information. There is also a `notebook
21-
<https://github.com/alimanfoo/zarr/blob/master/notebooks/advanced_indexing.ipynb>`_
21+
<https://github.com/zarr-developers/zarr/blob/master/notebooks/advanced_indexing.ipynb>`_
2222
with extended examples and performance benchmarks. :issue:`78`, :issue:`89`,
2323
:issue:`112`, :issue:`172`.
2424

@@ -340,8 +340,8 @@ Storage
340340
~~~~~~~
341341

342342
The main motivation for re-organizing the code was to create an
343-
abstraction layer between the core array logic and data storage (`#21
344-
<https://github.com/alimanfoo/zarr/issues/21>`_). In this release, any
343+
abstraction layer between the core array logic and data storage (:issue:`21`).
344+
In this release, any
345345
object that implements the ``MutableMapping`` interface can be used as
346346
an array store. See the tutorial sections on :ref:`tutorial_persist`
347347
and :ref:`tutorial_storage`, the :ref:`spec_v1`, and the
@@ -392,8 +392,7 @@ performance improvement for multi-threaded compression operations.
392392

393393
The :mod:`zarr.blosc` extension now automatically detects whether it
394394
is running within a single-threaded or multi-threaded program and
395-
adapts its internal behaviour accordingly (`#27
396-
<https://github.com/alimanfoo/zarr/issues/27>`_). There is no need for
395+
adapts its internal behaviour accordingly (:issue:`27`). There is no need for
397396
the user to make any API calls to switch Blosc between contextual and
398397
non-contextual (global lock) mode. See also the tutorial section on
399398
:ref:`tutorial_tips_blosc`.
@@ -409,8 +408,7 @@ option present in the previous release, and this has been removed.
409408

410409
The memory layout within chunks can now be set as either "C"
411410
(row-major) or "F" (column-major), which can help to provide better
412-
compression for some data (`#7
413-
<https://github.com/alimanfoo/zarr/issues/7>`_). See the tutorial
411+
compression for some data (:issue:`7`). See the tutorial
414412
section on :ref:`tutorial_chunks_order` for more information.
415413

416414
A bug has been fixed within the ``__getitem__`` and ``__setitem__``
@@ -430,14 +428,14 @@ Thanks to :user:`Matthew Rocklin <mrocklin>`, :user:`Stephan Hoyer <shoyer>`,
430428
-----
431429

432430
See `v0.4.0 release notes on GitHub
433-
<https://github.com/alimanfoo/zarr/releases/tag/v0.4.0>`_.
431+
<https://github.com/zarr-developers/zarr/releases/tag/v0.4.0>`_.
434432

435433
.. _release_0.3.0:
436434

437435
0.3.0
438436
-----
439437

440438
See `v0.3.0 release notes on GitHub
441-
<https://github.com/alimanfoo/zarr/releases/tag/v0.3.0>`_.
439+
<https://github.com/zarr-developers/zarr/releases/tag/v0.3.0>`_.
442440

443441
.. _NumCodecs: http://numcodecs.readthedocs.io/

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ Groups also have the :func:`zarr.hierarchy.Group.tree` method, e.g.::
423423

424424
If you're using Zarr within a Jupyter notebook, calling ``tree()`` will generate an
425425
interactive tree representation, see the `repr_tree.ipynb notebook
426-
<http://nbviewer.jupyter.org/github/alimanfoo/zarr/blob/master/notebooks/repr_tree.ipynb>`_
426+
<http://nbviewer.jupyter.org/github/zarr-developers/zarr/blob/master/notebooks/repr_tree.ipynb>`_
427427
for more examples.
428428

429429
.. _tutorial_attrs:

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55

6-
DESCRIPTION = 'A minimal implementation of chunked, compressed, ' \
6+
DESCRIPTION = 'An implementation of chunked, compressed, ' \
77
'N-dimensional arrays for Python.'
88

99
with open('README.rst') as f:
@@ -46,10 +46,8 @@
4646
'Programming Language :: Python :: 3.5',
4747
'Programming Language :: Python :: 3.6',
4848
],
49-
author='Alistair Miles',
50-
author_email='[email protected]',
5149
maintainer='Alistair Miles',
5250
maintainer_email='[email protected]',
53-
url='https://github.com/alimanfoo/zarr',
51+
url='https://github.com/zarr-developers/zarr',
5452
license='MIT',
5553
)

0 commit comments

Comments
 (0)