Skip to content

Commit

Permalink
upd copyright 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
chaimleib committed Dec 17, 2018
1 parent a6fede3 commit 713fbed
Show file tree
Hide file tree
Showing 33 changed files with 35 additions and 36 deletions.
2 changes: 1 addition & 1 deletion intervaltree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Root package.
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion intervaltree/interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Interval class
Copyright 2013-2018 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Modifications copyright 2014 Konstantin Tretyakov
Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion intervaltree/intervaltree.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Core logic.
Copyright 2013-2018 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Modifications Copyright 2014 Konstantin Tretyakov
Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion intervaltree/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Core logic: internal tree nodes.
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Modifications Copyright 2014 Konstantin Tretyakov
Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Note that "python setup.py test" invokes pytest on the package. With appropriately
configured setup.cfg, this will check both xxx_test modules and docstrings.
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -87,7 +87,7 @@ def run_tests(self):
'Topic :: Text Processing :: Markup',
],
keywords='interval-tree data-structure intervals tree', # Separate with spaces
author='Chaim-Leib Halbert, Konstantin Tretyakov',
author='Chaim Leib Halbert, Konstantin Tretyakov',
author_email='[email protected]',
url='https://github.com/chaimleib/intervaltree',
download_url='https://github.com/chaimleib/intervaltree/tarball/{version}'.format(**version_info),
Expand All @@ -96,6 +96,5 @@ def run_tests(self):
include_package_data=True,
zip_safe=True,
tests_require=['pytest'],
cmdclass={'test': PyTest},
entry_points={}
cmdclass={'test': PyTest}
)
2 changes: 1 addition & 1 deletion test/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2013-2017 Chaim-Leib Halbert
# Copyright 2013-2018 Chaim Leib Halbert
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/interval_methods/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: Interval methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/interval_methods/binary_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: Intervals, methods on two intervals
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/interval_methods/sorting_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: Intervals, sorting methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/interval_methods/unary_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: Intervals, methods on self only
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervals.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: utilities to generate intervals
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/copy_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Copying
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/debug_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Basic query methods (read-only)
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/delete_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Basic deletion methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/init_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, initialization methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/insert_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Basic insertion methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/query_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Basic query methods (read-only)
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/restructure_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Special methods
Copyright 2013-2018 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltree_methods/setlike_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, Special methods
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/intervaltrees.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: utilities to generate test trees
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: issues by tracking number
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/issue25_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Test module: IntervalTree, insertion and removal of float intervals
Submitted as issue #25 (Incorrect KeyError) by sciencectn
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/issue26_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Submitted as issue #26 (Pop from empty list error) by sciencectn
Ensure that rotations that promote Intervals prune when necessary
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/issue27_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Submitted as issue #26 (Pop from empty list error) by sciencectn
Ensure that rotations that promote Intervals prune when necessary
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/issue41_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Test module: IntervalTree, removal of intervals
Submitted as issue #41 (Interval removal breaks this tree) by escalonn
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/issues/issue67_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Submitted as issue #67 (Inserting intervals in specific sequence results in
invalid tree) by suola
Copyright 2013-2018 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/match.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree, test utilities
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/optimality/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree structure optimality tests
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/optimality/optimality_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree optimality
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/optimality/optimality_test_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: IntervalTree optimality
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test/progress_bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Test module: progress bar
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Version utilities
Copyright 2013-2017 Chaim-Leib Halbert
Copyright 2013-2018 Chaim Leib Halbert
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down

0 comments on commit 713fbed

Please sign in to comment.