From e571dbf21cf0af556cb684e516bfd7ff71adaacc Mon Sep 17 00:00:00 2001 From: "Peter M. Stahl" Date: Sun, 29 Jan 2023 22:20:19 +0100 Subject: [PATCH] Update copyright notice --- .editorconfig | 2 +- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 2 +- codecov.yml | 2 +- lingua/__init__.py | 2 +- lingua/_constant.py | 2 +- lingua/_model.py | 2 +- lingua/_ngram.py | 2 +- lingua/builder.py | 2 +- lingua/detector.py | 2 +- lingua/isocode.py | 2 +- lingua/language.py | 2 +- lingua/writer.py | 2 +- pyproject.toml | 2 +- scripts/accuracy_plot_drawer.py | 2 +- scripts/accuracy_reporter.py | 2 +- scripts/accuracy_table_writer.py | 2 +- scripts/benchmark.py | 2 +- scripts/memory_profiler.py | 2 +- tests/__init__.py | 2 +- tests/test_builder.py | 2 +- tests/test_detector.py | 2 +- tests/test_language.py | 2 +- tests/test_model.py | 2 +- tests/test_ngram.py | 2 +- tests/test_writer.py | 2 +- 26 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.editorconfig b/.editorconfig index 79287955..297abec4 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6bc6136..35c5881f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3744066c..a6f81d3d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/codecov.yml b/codecov.yml index ff813666..9ca32887 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/__init__.py b/lingua/__init__.py index d2fa3dc8..8a2f48ef 100644 --- a/lingua/__init__.py +++ b/lingua/__init__.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/_constant.py b/lingua/_constant.py index 2e179360..5a283fb5 100644 --- a/lingua/_constant.py +++ b/lingua/_constant.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/_model.py b/lingua/_model.py index 2d5b60bf..4b815755 100644 --- a/lingua/_model.py +++ b/lingua/_model.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/_ngram.py b/lingua/_ngram.py index 4596d50e..81bd3e56 100644 --- a/lingua/_ngram.py +++ b/lingua/_ngram.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/builder.py b/lingua/builder.py index c25db891..7d298b89 100644 --- a/lingua/builder.py +++ b/lingua/builder.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/detector.py b/lingua/detector.py index aeb3c2d6..f1a3dde1 100644 --- a/lingua/detector.py +++ b/lingua/detector.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/isocode.py b/lingua/isocode.py index bb9fa0d9..7059dbe3 100644 --- a/lingua/isocode.py +++ b/lingua/isocode.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/language.py b/lingua/language.py index 81676438..34660868 100644 --- a/lingua/language.py +++ b/lingua/language.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/lingua/writer.py b/lingua/writer.py index 487d98b2..1599e88f 100644 --- a/lingua/writer.py +++ b/lingua/writer.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/pyproject.toml b/pyproject.toml index 5c1fe3d3..c3e54eb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/accuracy_plot_drawer.py b/scripts/accuracy_plot_drawer.py index d09c5414..0a652bc6 100644 --- a/scripts/accuracy_plot_drawer.py +++ b/scripts/accuracy_plot_drawer.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/accuracy_reporter.py b/scripts/accuracy_reporter.py index 1d9616fb..e7e41b2f 100644 --- a/scripts/accuracy_reporter.py +++ b/scripts/accuracy_reporter.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/accuracy_table_writer.py b/scripts/accuracy_table_writer.py index 6211c4da..ac8e8d6f 100644 --- a/scripts/accuracy_table_writer.py +++ b/scripts/accuracy_table_writer.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/benchmark.py b/scripts/benchmark.py index d8d88f88..0e4b2f88 100755 --- a/scripts/benchmark.py +++ b/scripts/benchmark.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/scripts/memory_profiler.py b/scripts/memory_profiler.py index 6dbc865e..221dea38 100644 --- a/scripts/memory_profiler.py +++ b/scripts/memory_profiler.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/__init__.py b/tests/__init__.py index d5b8f8b8..0b1d0273 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_builder.py b/tests/test_builder.py index ddca04be..10deb290 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_detector.py b/tests/test_detector.py index c1069001..1d390614 100644 --- a/tests/test_detector.py +++ b/tests/test_detector.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_language.py b/tests/test_language.py index b4aedb38..d8de39d0 100644 --- a/tests/test_language.py +++ b/tests/test_language.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_model.py b/tests/test_model.py index 0ce48be6..dbb6335b 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_ngram.py b/tests/test_ngram.py index c4cbbb5f..82439d54 100644 --- a/tests/test_ngram.py +++ b/tests/test_ngram.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/tests/test_writer.py b/tests/test_writer.py index 7e0864b5..8eddd255 100644 --- a/tests/test_writer.py +++ b/tests/test_writer.py @@ -1,5 +1,5 @@ # -# Copyright © 2022 Peter M. Stahl pemistahl@gmail.com +# Copyright © 2022-present Peter M. Stahl pemistahl@gmail.com # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.