Skip to content

Commit e42d3ff

Browse files
committed
Author changed to the Blosc development team
1 parent 69ea142 commit e42d3ff

File tree

12 files changed

+20
-32
lines changed

12 files changed

+20
-32
lines changed

LICENSES/BLOSC.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ BSD License
33
For Blosc - A blocking, shuffling and lossless compression library
44

55
Copyright (C) 2009-2018 Francesc Alted <[email protected]>
6-
Copyright (C) 2019-2020 The Blosc Development Team
6+
Copyright (C) 2019-Present The Blosc Development Team
77

88
Redistribution and use in source and binary forms, with or without modification,
99
are permitted provided that the following conditions are met:

LICENSES/PYTHON-BLOSC.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Copyright (C) 2010-2012 Francesc Alted ([email protected])
66
Copyright (C) 2013-2015 Francesc Alted ([email protected]), Valentin Haenel ([email protected])
77
Copyright (C) 2016-2017 Francesc Alted <[email protected]>
88
Copyright (C) 2018-2019 Francesc Alted <[email protected]>, Valentin Haenel <[email protected]>
9-
Copyright (C) 2020 The Blosc Development Team
9+
Copyright (C) 2020-Present The Blosc Development Team
1010

1111
Redistribution and use in source and binary forms, with or without modification,
1212
are permitted provided that the following conditions are met:

README.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
python-blosc: a Python wrapper for the extremely fast Blosc compression library
22
===============================================================================
33

4-
:Author: Francesc Alted
5-
:Author: Valentin Haenel
6-
7-
4+
:Author: The Blosc development team
5+
86
:Github: https://github.com/Blosc/python-blosc
97
:URL: http://python-blosc.blosc.org
108
:PyPi: |version|

RELEASE_NOTES.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
Release notes for python-blosc
33
================================
44

5-
:Author: Francesc Alted
6-
:Author: Valentin Hänel
7-
8-
5+
:Author: The Blosc development team
6+
97
:URL: http://python-blosc.blosc.org
108
:URL: https://github.com/Blosc/python-blosc
119

bench/compare-pack-ptr.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
########################################################################
22
#
3-
# License: MIT
43
# Created: May 4, 2013
5-
# Author: Valentin Haenel - [email protected]
6-
# Author: Francesc Alted - [email protected]
4+
# Author: The Blosc development team - [email protected]
75
#
86
########################################################################
97

bench/compress_ptr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
########################################################################
22
#
3-
# License: MIT
43
# Created: Jan 19, 2013
5-
# Author: Francesc Alted - [email protected]
4+
# Author: The Blosc development team - [email protected]
65
#
76
########################################################################
87

blosc/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
########################################################################
22
#
3-
# License: MIT
43
# Created: September 22, 2010
5-
# Author: Francesc Alted - [email protected]
4+
# Author: The Blosc development team - [email protected]
65
#
76
########################################################################
87

blosc/blosc_extension.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
/*********************************************************************
22
Blosc - Blocked Shuffling and Compression Library
33
4-
License: MIT
54
Created: September 22, 2010
6-
Author: Francesc Alted - faltet@pytables.org
5+
Author: The Blosc development team - blosc@blosc.org
76
87
See LICENSES/BLOSC.txt for details about copyright and rights to use.
98
**********************************************************************/

blosc/toplevel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# -*- coding: utf-8 -*-
22
########################################################################
33
#
4-
# License: MIT
54
# Created: September 22, 2010
6-
# Author: Francesc Alted - [email protected]
5+
# Author: The Blosc development team - [email protected]
76
#
87
########################################################################
98

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
# (source start file, target name, title, author, documentclass [howto/manual]).
193193
latex_documents = [
194194
('index', 'python-blosc.tex', u'python-blosc Documentation',
195-
u'Francesc Alted, Valentin Haenel', 'manual'),
195+
u'The Blosc development team', 'manual'),
196196
]
197197

198198
# The name of an image file (relative to this directory) to place at the top of
@@ -222,7 +222,7 @@
222222
# (source start file, name, description, authors, manual section).
223223
man_pages = [
224224
('index', 'python-blosc', u'python-blosc Documentation',
225-
[u'Francesc Alted, Valentin Haenel'], 1)
225+
[u'The Blosc development team'], 1)
226226
]
227227

228228
# If true, show URL addresses after external links.
@@ -236,7 +236,7 @@
236236
# dir menu entry, description, category)
237237
texinfo_documents = [
238238
('index', 'python-blosc', u'python-blosc Documentation',
239-
u'Francesc Alted, Valentin Haenel', 'python-blosc', 'Wrapper for c-blosc multi-threaded compressor.',
239+
u'The Blosc development team', 'python-blosc', 'Wrapper for c-blosc multi-threaded compressor.',
240240
'Miscellaneous'),
241241
]
242242

doc/tutorial.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ achieved by `blosc`:
309309
significant for a small `blocksize`. GIL release is intended to be used in
310310
situations where other bounds (such as file or network I/O) are the rate-limiting
311311
ones and a Python `ThreadPool` or similar object can be used for parallel
312-
processing either with or without `blosc` threads. Initial testing suggests
312+
processing either with or without `blosc` threads. Preliminary tests suggest
313313
that an equal mix of `ThreadPool` and `blosc` threads is near optimal. I.e. a
314314
computer with 16 cores would have 4 `blosc` threads and 4 `ThreadPool` threads.
315315
An example of combining `blosc` and `ThreadPool` may be found in
@@ -320,5 +320,3 @@ Links to external discussions on `blosc` optimization
320320

321321
* `Synthetic Benchmarks <http://www.blosc.org/synthetic-benchmarks.html>`_ by Francesc Alted
322322
* `Genotype compressor benchmark <http://alimanfoo.github.io/2016/09/21/genotype-compression-benchmark.html>`_ by Alistair Miles
323-
324-

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# License: BSD 3-clause
55
# Created: September 22, 2010
6-
# Author: Francesc Alted - [email protected]
6+
# Author: The Blosc development team
77
#
88
########################################################################
99

@@ -78,10 +78,10 @@ def cmake_bool(cond):
7878
description = 'Blosc data compressor',
7979
long_description = long_description,
8080
classifiers = [c for c in classifiers.split("\n") if c],
81-
author = 'Francesc Alted, Valentin Haenel',
82-
83-
maintainer = 'Francesc Alted, Valentin Haenel',
84-
maintainer_email = '[email protected], [email protected]',
81+
author = 'The Blosc development team',
82+
author_email = '[email protected]',
83+
maintainer = 'The Blosc development team',
84+
maintainer_email = '[email protected]',
8585
url = 'http://github.com/blosc/python-blosc',
8686
license = 'https://opensource.org/licenses/BSD-3-Clause',
8787
platforms = ['any'],

0 commit comments

Comments
 (0)