Skip to content

Commit 713fbed

Browse files
committed
upd copyright 2018
1 parent a6fede3 commit 713fbed

33 files changed

+35
-36
lines changed

intervaltree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Root package.
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

intervaltree/interval.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Interval class
66
7-
Copyright 2013-2018 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
Modifications copyright 2014 Konstantin Tretyakov
99
1010
Licensed under the Apache License, Version 2.0 (the "License");

intervaltree/intervaltree.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Core logic.
66
7-
Copyright 2013-2018 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
Modifications Copyright 2014 Konstantin Tretyakov
99
1010
Licensed under the Apache License, Version 2.0 (the "License");

intervaltree/node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Core logic: internal tree nodes.
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
Modifications Copyright 2014 Konstantin Tretyakov
99
1010
Licensed under the Apache License, Version 2.0 (the "License");

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Note that "python setup.py test" invokes pytest on the package. With appropriately
88
configured setup.cfg, this will check both xxx_test modules and docstrings.
99
10-
Copyright 2013-2017 Chaim-Leib Halbert
10+
Copyright 2013-2018 Chaim Leib Halbert
1111
1212
Licensed under the Apache License, Version 2.0 (the "License");
1313
you may not use this file except in compliance with the License.
@@ -87,7 +87,7 @@ def run_tests(self):
8787
'Topic :: Text Processing :: Markup',
8888
],
8989
keywords='interval-tree data-structure intervals tree', # Separate with spaces
90-
author='Chaim-Leib Halbert, Konstantin Tretyakov',
90+
author='Chaim Leib Halbert, Konstantin Tretyakov',
9191
author_email='[email protected]',
9292
url='https://github.com/chaimleib/intervaltree',
9393
download_url='https://github.com/chaimleib/intervaltree/tarball/{version}'.format(**version_info),
@@ -96,6 +96,5 @@ def run_tests(self):
9696
include_package_data=True,
9797
zip_safe=True,
9898
tests_require=['pytest'],
99-
cmdclass={'test': PyTest},
100-
entry_points={}
99+
cmdclass={'test': PyTest}
101100
)

test/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2013-2017 Chaim-Leib Halbert
1+
# Copyright 2013-2018 Chaim Leib Halbert
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.

test/interval_methods/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: Interval methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/interval_methods/binary_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: Intervals, methods on two intervals
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/interval_methods/sorting_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: Intervals, sorting methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/interval_methods/unary_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: Intervals, methods on self only
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervals.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: utilities to generate intervals
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/copy_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Copying
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/debug_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Basic query methods (read-only)
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/delete_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Basic deletion methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/init_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, initialization methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/insert_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Basic insertion methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/query_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Basic query methods (read-only)
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/restructure_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Special methods
66
7-
Copyright 2013-2018 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltree_methods/setlike_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, Special methods
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/intervaltrees.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: utilities to generate test trees
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/issues/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: issues by tracking number
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/issues/issue25_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Test module: IntervalTree, insertion and removal of float intervals
66
Submitted as issue #25 (Incorrect KeyError) by sciencectn
77
8-
Copyright 2013-2017 Chaim-Leib Halbert
8+
Copyright 2013-2018 Chaim Leib Halbert
99
1010
Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.

test/issues/issue26_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Submitted as issue #26 (Pop from empty list error) by sciencectn
77
Ensure that rotations that promote Intervals prune when necessary
88
9-
Copyright 2013-2017 Chaim-Leib Halbert
9+
Copyright 2013-2018 Chaim Leib Halbert
1010
1111
Licensed under the Apache License, Version 2.0 (the "License");
1212
you may not use this file except in compliance with the License.

test/issues/issue27_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
Submitted as issue #26 (Pop from empty list error) by sciencectn
77
Ensure that rotations that promote Intervals prune when necessary
88
9-
Copyright 2013-2017 Chaim-Leib Halbert
9+
Copyright 2013-2018 Chaim Leib Halbert
1010
1111
Licensed under the Apache License, Version 2.0 (the "License");
1212
you may not use this file except in compliance with the License.

test/issues/issue41_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Test module: IntervalTree, removal of intervals
66
Submitted as issue #41 (Interval removal breaks this tree) by escalonn
77
8-
Copyright 2013-2017 Chaim-Leib Halbert
8+
Copyright 2013-2018 Chaim Leib Halbert
99
1010
Licensed under the Apache License, Version 2.0 (the "License");
1111
you may not use this file except in compliance with the License.

test/issues/issue67_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Submitted as issue #67 (Inserting intervals in specific sequence results in
88
invalid tree) by suola
99
10-
Copyright 2013-2018 Chaim-Leib Halbert
10+
Copyright 2013-2018 Chaim Leib Halbert
1111
1212
Licensed under the Apache License, Version 2.0 (the "License");
1313
you may not use this file except in compliance with the License.

test/match.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree, test utilities
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/optimality/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree structure optimality tests
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/optimality/optimality_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree optimality
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/optimality/optimality_test_matrix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: IntervalTree optimality
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

test/progress_bar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Test module: progress bar
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

utils/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Version utilities
66
7-
Copyright 2013-2017 Chaim-Leib Halbert
7+
Copyright 2013-2018 Chaim Leib Halbert
88
99
Licensed under the Apache License, Version 2.0 (the "License");
1010
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)