From db40ccb0508cef0bccafc1850d50be7311f8212d Mon Sep 17 00:00:00 2001 From: Rouven Bauer Date: Tue, 3 May 2022 17:31:42 +0200 Subject: [PATCH 1/3] Use HTTPS for license link --- neo4j/__init__.py | 2 +- neo4j/_async/__init__.py | 2 +- neo4j/_async/driver.py | 2 +- neo4j/_async/io/__init__.py | 2 +- neo4j/_async/io/_bolt.py | 2 +- neo4j/_async/io/_bolt3.py | 2 +- neo4j/_async/io/_bolt4.py | 2 +- neo4j/_async/io/_bolt5.py | 2 +- neo4j/_async/io/_common.py | 2 +- neo4j/_async/io/_pool.py | 2 +- neo4j/_async/work/__init__.py | 2 +- neo4j/_async/work/result.py | 2 +- neo4j/_async/work/session.py | 2 +- neo4j/_async/work/transaction.py | 2 +- neo4j/_async/work/workspace.py | 2 +- neo4j/_async_compat/__init__.py | 2 +- neo4j/_async_compat/concurrency.py | 2 +- neo4j/_async_compat/network/__init__.py | 2 +- neo4j/_async_compat/network/_bolt_socket.py | 2 +- neo4j/_async_compat/util.py | 2 +- neo4j/_conf.py | 2 +- neo4j/_exceptions.py | 2 +- neo4j/_sync/__init__.py | 2 +- neo4j/_sync/driver.py | 2 +- neo4j/_sync/io/__init__.py | 2 +- neo4j/_sync/io/_bolt.py | 2 +- neo4j/_sync/io/_bolt3.py | 2 +- neo4j/_sync/io/_bolt4.py | 2 +- neo4j/_sync/io/_bolt5.py | 2 +- neo4j/_sync/io/_common.py | 2 +- neo4j/_sync/io/_pool.py | 2 +- neo4j/_sync/work/__init__.py | 2 +- neo4j/_sync/work/result.py | 2 +- neo4j/_sync/work/session.py | 2 +- neo4j/_sync/work/transaction.py | 2 +- neo4j/_sync/work/workspace.py | 2 +- neo4j/addressing.py | 2 +- neo4j/api.py | 2 +- neo4j/conf.py | 2 +- neo4j/data.py | 2 +- neo4j/debug.py | 2 +- neo4j/exceptions.py | 2 +- neo4j/graph/__init__.py | 2 +- neo4j/meta.py | 2 +- neo4j/packstream.py | 2 +- neo4j/routing.py | 2 +- neo4j/spatial/__init__.py | 2 +- neo4j/time/__init__.py | 2 +- neo4j/time/__main__.py | 2 +- neo4j/time/arithmetic.py | 2 +- neo4j/time/clock_implementations.py | 2 +- neo4j/time/hydration.py | 2 +- neo4j/time/metaclasses.py | 2 +- neo4j/work/__init__.py | 2 +- neo4j/work/query.py | 2 +- neo4j/work/summary.py | 2 +- setup.py | 2 +- testkit/backend.py | 2 +- testkit/build.py | 2 +- testkit/integration.py | 2 +- testkit/stress.py | 2 +- testkit/unittests.py | 2 +- testkitbackend/__init__.py | 2 +- testkitbackend/__main__.py | 2 +- testkitbackend/_async/__init__.py | 2 +- testkitbackend/_async/backend.py | 2 +- testkitbackend/_async/requests.py | 2 +- testkitbackend/_driver_logger.py | 2 +- testkitbackend/_sync/__init__.py | 2 +- testkitbackend/_sync/backend.py | 2 +- testkitbackend/_sync/requests.py | 2 +- testkitbackend/backend.py | 2 +- testkitbackend/exceptions.py | 2 +- testkitbackend/fromtestkit.py | 2 +- testkitbackend/server.py | 2 +- testkitbackend/test_subtest_skips.py | 2 +- testkitbackend/totestkit.py | 2 +- tests/__init__.py | 2 +- tests/_async_compat/__init__.py | 2 +- tests/_async_compat/mark_decorator.py | 2 +- tests/env.py | 2 +- tests/integration/async_/__init__.py | 2 +- tests/integration/async_/test_custom_ssl_context.py | 2 +- tests/integration/conftest.py | 2 +- tests/integration/examples/__init__.py | 2 +- .../integration/examples/test_autocommit_transaction_example.py | 2 +- tests/integration/examples/test_basic_auth_example.py | 2 +- tests/integration/examples/test_bearer_auth_example.py | 2 +- .../integration/examples/test_config_connection_pool_example.py | 2 +- .../examples/test_config_connection_timeout_example.py | 2 +- .../integration/examples/test_config_max_retry_time_example.py | 2 +- tests/integration/examples/test_config_secure_example.py | 2 +- tests/integration/examples/test_config_trust_example.py | 2 +- tests/integration/examples/test_config_unencrypted_example.py | 2 +- tests/integration/examples/test_custom_auth_example.py | 2 +- tests/integration/examples/test_custom_resolver_example.py | 2 +- tests/integration/examples/test_cypher_error_example.py | 2 +- tests/integration/examples/test_database_selection_example.py | 2 +- tests/integration/examples/test_driver_introduction_example.py | 2 +- tests/integration/examples/test_driver_lifecycle_example.py | 2 +- tests/integration/examples/test_geospatial_types_example.py | 2 +- tests/integration/examples/test_hello_world_example.py | 2 +- tests/integration/examples/test_kerberos_auth_example.py | 2 +- tests/integration/examples/test_pass_bookmarks_example.py | 2 +- .../integration/examples/test_read_write_transaction_example.py | 2 +- tests/integration/examples/test_result_consume_example.py | 2 +- tests/integration/examples/test_result_retain_example.py | 2 +- tests/integration/examples/test_service_unavailable_example.py | 2 +- tests/integration/examples/test_session_example.py | 2 +- tests/integration/examples/test_temporal_types_example.py | 2 +- tests/integration/examples/test_transaction_function_example.py | 2 +- .../examples/test_transaction_metadata_config_example.py | 2 +- .../examples/test_transaction_timeout_config_example.py | 2 +- tests/integration/sync/__init__.py | 2 +- tests/integration/sync/test_custom_ssl_context.py | 2 +- tests/integration/test_bolt_driver.py | 2 +- tests/integration/test_readme.py | 2 +- tests/integration/test_tx_functions.py | 2 +- tests/performance/test_async_results.py | 2 +- tests/performance/test_results.py | 2 +- tests/performance/tools.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/async_/__init__.py | 2 +- tests/unit/async_/io/__init__.py | 2 +- tests/unit/async_/io/conftest.py | 2 +- tests/unit/async_/io/test__common.py | 2 +- tests/unit/async_/io/test_class_bolt.py | 2 +- tests/unit/async_/io/test_class_bolt3.py | 2 +- tests/unit/async_/io/test_class_bolt4x0.py | 2 +- tests/unit/async_/io/test_class_bolt4x1.py | 2 +- tests/unit/async_/io/test_class_bolt4x2.py | 2 +- tests/unit/async_/io/test_class_bolt4x3.py | 2 +- tests/unit/async_/io/test_class_bolt4x4.py | 2 +- tests/unit/async_/io/test_direct.py | 2 +- tests/unit/async_/io/test_neo4j_pool.py | 2 +- tests/unit/async_/test_addressing.py | 2 +- tests/unit/async_/test_driver.py | 2 +- tests/unit/async_/work/__init__.py | 2 +- tests/unit/async_/work/_fake_connection.py | 2 +- tests/unit/async_/work/test_result.py | 2 +- tests/unit/async_/work/test_session.py | 2 +- tests/unit/async_/work/test_transaction.py | 2 +- tests/unit/common/__init__.py | 2 +- tests/unit/common/data/__init__.py | 2 +- tests/unit/common/data/test_packing.py | 2 +- tests/unit/common/io/__init__.py | 2 +- tests/unit/common/io/test_routing.py | 2 +- tests/unit/common/spatial/__init__.py | 2 +- tests/unit/common/spatial/test_cartesian_point.py | 2 +- tests/unit/common/spatial/test_point.py | 2 +- tests/unit/common/spatial/test_wgs84_point.py | 2 +- tests/unit/common/test_addressing.py | 2 +- tests/unit/common/test_api.py | 2 +- tests/unit/common/test_conf.py | 2 +- tests/unit/common/test_data.py | 2 +- tests/unit/common/test_exceptions.py | 2 +- tests/unit/common/test_import_neo4j.py | 2 +- tests/unit/common/test_record.py | 2 +- tests/unit/common/test_security.py | 2 +- tests/unit/common/test_types.py | 2 +- tests/unit/common/time/__init__.py | 2 +- tests/unit/common/time/test_clock.py | 2 +- tests/unit/common/time/test_clocktime.py | 2 +- tests/unit/common/time/test_date.py | 2 +- tests/unit/common/time/test_datetime.py | 2 +- tests/unit/common/time/test_dehydration.py | 2 +- tests/unit/common/time/test_duration.py | 2 +- tests/unit/common/time/test_hydration.py | 2 +- tests/unit/common/time/test_time.py | 2 +- tests/unit/mixed/__init__.py | 2 +- tests/unit/mixed/async_compat/__init__.py | 2 +- tests/unit/mixed/async_compat/test_concurrency.py | 2 +- tests/unit/mixed/io/__init__.py | 2 +- tests/unit/mixed/io/test_direct.py | 2 +- tests/unit/sync/__init__.py | 2 +- tests/unit/sync/io/__init__.py | 2 +- tests/unit/sync/io/conftest.py | 2 +- tests/unit/sync/io/test__common.py | 2 +- tests/unit/sync/io/test_class_bolt.py | 2 +- tests/unit/sync/io/test_class_bolt3.py | 2 +- tests/unit/sync/io/test_class_bolt4x0.py | 2 +- tests/unit/sync/io/test_class_bolt4x1.py | 2 +- tests/unit/sync/io/test_class_bolt4x2.py | 2 +- tests/unit/sync/io/test_class_bolt4x3.py | 2 +- tests/unit/sync/io/test_class_bolt4x4.py | 2 +- tests/unit/sync/io/test_direct.py | 2 +- tests/unit/sync/io/test_neo4j_pool.py | 2 +- tests/unit/sync/test_addressing.py | 2 +- tests/unit/sync/test_driver.py | 2 +- tests/unit/sync/work/__init__.py | 2 +- tests/unit/sync/work/_fake_connection.py | 2 +- tests/unit/sync/work/test_result.py | 2 +- tests/unit/sync/work/test_session.py | 2 +- tests/unit/sync/work/test_transaction.py | 2 +- 194 files changed, 194 insertions(+), 194 deletions(-) diff --git a/neo4j/__init__.py b/neo4j/__init__.py index 6d5171a91..0e58cd10e 100644 --- a/neo4j/__init__.py +++ b/neo4j/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/__init__.py b/neo4j/_async/__init__.py index b81a309da..487bee0b2 100644 --- a/neo4j/_async/__init__.py +++ b/neo4j/_async/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/driver.py b/neo4j/_async/driver.py index 989d62151..6863881a8 100644 --- a/neo4j/_async/driver.py +++ b/neo4j/_async/driver.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/__init__.py b/neo4j/_async/io/__init__.py index 32aca11f8..1454adb09 100644 --- a/neo4j/_async/io/__init__.py +++ b/neo4j/_async/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_bolt.py b/neo4j/_async/io/_bolt.py index a29d7bb93..ad758feb3 100644 --- a/neo4j/_async/io/_bolt.py +++ b/neo4j/_async/io/_bolt.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_bolt3.py b/neo4j/_async/io/_bolt3.py index ed8f1f956..823c7d9b2 100644 --- a/neo4j/_async/io/_bolt3.py +++ b/neo4j/_async/io/_bolt3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_bolt4.py b/neo4j/_async/io/_bolt4.py index c719bc09d..6b2f1cd7a 100644 --- a/neo4j/_async/io/_bolt4.py +++ b/neo4j/_async/io/_bolt4.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_bolt5.py b/neo4j/_async/io/_bolt5.py index 001ce7be2..cc932fc6b 100644 --- a/neo4j/_async/io/_bolt5.py +++ b/neo4j/_async/io/_bolt5.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_common.py b/neo4j/_async/io/_common.py index aaf458f76..31d912700 100644 --- a/neo4j/_async/io/_common.py +++ b/neo4j/_async/io/_common.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/io/_pool.py b/neo4j/_async/io/_pool.py index 496501224..2262a152d 100644 --- a/neo4j/_async/io/_pool.py +++ b/neo4j/_async/io/_pool.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/work/__init__.py b/neo4j/_async/work/__init__.py index da66b6987..e49ed8d7b 100644 --- a/neo4j/_async/work/__init__.py +++ b/neo4j/_async/work/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/work/result.py b/neo4j/_async/work/result.py index a0bd7ec36..13b7db7bb 100644 --- a/neo4j/_async/work/result.py +++ b/neo4j/_async/work/result.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/work/session.py b/neo4j/_async/work/session.py index 9ea39cf42..27522f07b 100644 --- a/neo4j/_async/work/session.py +++ b/neo4j/_async/work/session.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/work/transaction.py b/neo4j/_async/work/transaction.py index fecbf6b3f..f9623569c 100644 --- a/neo4j/_async/work/transaction.py +++ b/neo4j/_async/work/transaction.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async/work/workspace.py b/neo4j/_async/work/workspace.py index a47e457e9..d2dcb28d4 100644 --- a/neo4j/_async/work/workspace.py +++ b/neo4j/_async/work/workspace.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async_compat/__init__.py b/neo4j/_async_compat/__init__.py index 87430ab55..52dd9b357 100644 --- a/neo4j/_async_compat/__init__.py +++ b/neo4j/_async_compat/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async_compat/concurrency.py b/neo4j/_async_compat/concurrency.py index 83e70348d..4859262b1 100644 --- a/neo4j/_async_compat/concurrency.py +++ b/neo4j/_async_compat/concurrency.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async_compat/network/__init__.py b/neo4j/_async_compat/network/__init__.py index a66d86338..7ce98e782 100644 --- a/neo4j/_async_compat/network/__init__.py +++ b/neo4j/_async_compat/network/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async_compat/network/_bolt_socket.py b/neo4j/_async_compat/network/_bolt_socket.py index 270041883..3c2014cea 100644 --- a/neo4j/_async_compat/network/_bolt_socket.py +++ b/neo4j/_async_compat/network/_bolt_socket.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_async_compat/util.py b/neo4j/_async_compat/util.py index b00d010bd..7b37263ca 100644 --- a/neo4j/_async_compat/util.py +++ b/neo4j/_async_compat/util.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_conf.py b/neo4j/_conf.py index 7943b1cc7..38ec4c5d7 100644 --- a/neo4j/_conf.py +++ b/neo4j/_conf.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_exceptions.py b/neo4j/_exceptions.py index 1588d14d2..a69fa6670 100644 --- a/neo4j/_exceptions.py +++ b/neo4j/_exceptions.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/__init__.py b/neo4j/_sync/__init__.py index b81a309da..487bee0b2 100644 --- a/neo4j/_sync/__init__.py +++ b/neo4j/_sync/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/driver.py b/neo4j/_sync/driver.py index b2ac76592..6a38e0580 100644 --- a/neo4j/_sync/driver.py +++ b/neo4j/_sync/driver.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/__init__.py b/neo4j/_sync/io/__init__.py index b598d07d3..87f210c00 100644 --- a/neo4j/_sync/io/__init__.py +++ b/neo4j/_sync/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_bolt.py b/neo4j/_sync/io/_bolt.py index 7ebf9bd8d..f795c1627 100644 --- a/neo4j/_sync/io/_bolt.py +++ b/neo4j/_sync/io/_bolt.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_bolt3.py b/neo4j/_sync/io/_bolt3.py index 034aa2d0c..ee69b8d1b 100644 --- a/neo4j/_sync/io/_bolt3.py +++ b/neo4j/_sync/io/_bolt3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_bolt4.py b/neo4j/_sync/io/_bolt4.py index ccd6d9772..0dd995738 100644 --- a/neo4j/_sync/io/_bolt4.py +++ b/neo4j/_sync/io/_bolt4.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_bolt5.py b/neo4j/_sync/io/_bolt5.py index d1c51703b..05b7c54d7 100644 --- a/neo4j/_sync/io/_bolt5.py +++ b/neo4j/_sync/io/_bolt5.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_common.py b/neo4j/_sync/io/_common.py index 647da7eca..e19c8112e 100644 --- a/neo4j/_sync/io/_common.py +++ b/neo4j/_sync/io/_common.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/io/_pool.py b/neo4j/_sync/io/_pool.py index d6cf8a9ad..0f5ff7ce9 100644 --- a/neo4j/_sync/io/_pool.py +++ b/neo4j/_sync/io/_pool.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/work/__init__.py b/neo4j/_sync/work/__init__.py index 9522d7b9a..47bc4c14d 100644 --- a/neo4j/_sync/work/__init__.py +++ b/neo4j/_sync/work/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/work/result.py b/neo4j/_sync/work/result.py index c13385524..a717d03d2 100644 --- a/neo4j/_sync/work/result.py +++ b/neo4j/_sync/work/result.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/work/session.py b/neo4j/_sync/work/session.py index 875a77802..933e3f8b8 100644 --- a/neo4j/_sync/work/session.py +++ b/neo4j/_sync/work/session.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/work/transaction.py b/neo4j/_sync/work/transaction.py index 6336f9936..4abdc14ac 100644 --- a/neo4j/_sync/work/transaction.py +++ b/neo4j/_sync/work/transaction.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/_sync/work/workspace.py b/neo4j/_sync/work/workspace.py index 96646ad12..cf8e5c642 100644 --- a/neo4j/_sync/work/workspace.py +++ b/neo4j/_sync/work/workspace.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/addressing.py b/neo4j/addressing.py index 780e2c234..128bcd359 100644 --- a/neo4j/addressing.py +++ b/neo4j/addressing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/api.py b/neo4j/api.py index 567d02a02..73625506c 100644 --- a/neo4j/api.py +++ b/neo4j/api.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/conf.py b/neo4j/conf.py index af1bdf856..683624f71 100644 --- a/neo4j/conf.py +++ b/neo4j/conf.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/data.py b/neo4j/data.py index c4f388457..f6a9b243d 100644 --- a/neo4j/data.py +++ b/neo4j/data.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/debug.py b/neo4j/debug.py index 7b2f0db5d..c8bcf99db 100644 --- a/neo4j/debug.py +++ b/neo4j/debug.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/exceptions.py b/neo4j/exceptions.py index 81e64d2ee..7a741a9a6 100644 --- a/neo4j/exceptions.py +++ b/neo4j/exceptions.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/graph/__init__.py b/neo4j/graph/__init__.py index d8e8582d8..7daedd8bd 100644 --- a/neo4j/graph/__init__.py +++ b/neo4j/graph/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/meta.py b/neo4j/meta.py index 35fa789ff..247aad5c4 100644 --- a/neo4j/meta.py +++ b/neo4j/meta.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/packstream.py b/neo4j/packstream.py index 70c8b6017..db627f169 100644 --- a/neo4j/packstream.py +++ b/neo4j/packstream.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/routing.py b/neo4j/routing.py index b0546d12f..5a764e00a 100644 --- a/neo4j/routing.py +++ b/neo4j/routing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/spatial/__init__.py b/neo4j/spatial/__init__.py index 4a5164912..81f13f05e 100644 --- a/neo4j/spatial/__init__.py +++ b/neo4j/spatial/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/__init__.py b/neo4j/time/__init__.py index 2a7eed33d..3b0185d54 100644 --- a/neo4j/time/__init__.py +++ b/neo4j/time/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/__main__.py b/neo4j/time/__main__.py index 9d1858b5b..64c09eb25 100644 --- a/neo4j/time/__main__.py +++ b/neo4j/time/__main__.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/arithmetic.py b/neo4j/time/arithmetic.py index 71c43f9fd..437016a32 100644 --- a/neo4j/time/arithmetic.py +++ b/neo4j/time/arithmetic.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/clock_implementations.py b/neo4j/time/clock_implementations.py index de4d0ba79..3d7c9965a 100644 --- a/neo4j/time/clock_implementations.py +++ b/neo4j/time/clock_implementations.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/hydration.py b/neo4j/time/hydration.py index 0212a1af9..2a6171240 100644 --- a/neo4j/time/hydration.py +++ b/neo4j/time/hydration.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/time/metaclasses.py b/neo4j/time/metaclasses.py index ad5e53ffa..341df0b51 100644 --- a/neo4j/time/metaclasses.py +++ b/neo4j/time/metaclasses.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/work/__init__.py b/neo4j/work/__init__.py index a4254afa3..09b50b5b3 100644 --- a/neo4j/work/__init__.py +++ b/neo4j/work/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/work/query.py b/neo4j/work/query.py index 56d00e9ea..56f18eeda 100644 --- a/neo4j/work/query.py +++ b/neo4j/work/query.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/neo4j/work/summary.py b/neo4j/work/summary.py index 600cfe2e1..19963b8fd 100644 --- a/neo4j/work/summary.py +++ b/neo4j/work/summary.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/setup.py b/setup.py index fc6a1d4db..fe8535bb8 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkit/backend.py b/testkit/backend.py index 5366afe94..1419b3add 100644 --- a/testkit/backend.py +++ b/testkit/backend.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkit/build.py b/testkit/build.py index bb7f07080..ad75b12b0 100644 --- a/testkit/build.py +++ b/testkit/build.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkit/integration.py b/testkit/integration.py index c4b1c685b..6de4eda6e 100644 --- a/testkit/integration.py +++ b/testkit/integration.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkit/stress.py b/testkit/stress.py index 3d171c49b..84edded90 100644 --- a/testkit/stress.py +++ b/testkit/stress.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkit/unittests.py b/testkit/unittests.py index a37301950..ba059abb9 100644 --- a/testkit/unittests.py +++ b/testkit/unittests.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/__init__.py b/testkitbackend/__init__.py index b81a309da..487bee0b2 100644 --- a/testkitbackend/__init__.py +++ b/testkitbackend/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/__main__.py b/testkitbackend/__main__.py index 2dec1adb7..8511f0d89 100644 --- a/testkitbackend/__main__.py +++ b/testkitbackend/__main__.py @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_async/__init__.py b/testkitbackend/_async/__init__.py index b81a309da..487bee0b2 100644 --- a/testkitbackend/_async/__init__.py +++ b/testkitbackend/_async/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_async/backend.py b/testkitbackend/_async/backend.py index 06fb15acf..bd9925f5a 100644 --- a/testkitbackend/_async/backend.py +++ b/testkitbackend/_async/backend.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_async/requests.py b/testkitbackend/_async/requests.py index 743379956..0b84efbe4 100644 --- a/testkitbackend/_async/requests.py +++ b/testkitbackend/_async/requests.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_driver_logger.py b/testkitbackend/_driver_logger.py index ef09ec355..3edf45962 100644 --- a/testkitbackend/_driver_logger.py +++ b/testkitbackend/_driver_logger.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_sync/__init__.py b/testkitbackend/_sync/__init__.py index b81a309da..487bee0b2 100644 --- a/testkitbackend/_sync/__init__.py +++ b/testkitbackend/_sync/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_sync/backend.py b/testkitbackend/_sync/backend.py index d553089b1..2c5ed6cf5 100644 --- a/testkitbackend/_sync/backend.py +++ b/testkitbackend/_sync/backend.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/_sync/requests.py b/testkitbackend/_sync/requests.py index a5ad3c752..3b6067ec3 100644 --- a/testkitbackend/_sync/requests.py +++ b/testkitbackend/_sync/requests.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/backend.py b/testkitbackend/backend.py index f97dcc1c3..30a247b29 100644 --- a/testkitbackend/backend.py +++ b/testkitbackend/backend.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/exceptions.py b/testkitbackend/exceptions.py index b16625960..32129914e 100644 --- a/testkitbackend/exceptions.py +++ b/testkitbackend/exceptions.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/fromtestkit.py b/testkitbackend/fromtestkit.py index 6fe6472c4..b336603b4 100644 --- a/testkitbackend/fromtestkit.py +++ b/testkitbackend/fromtestkit.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/server.py b/testkitbackend/server.py index 0eb36bd19..1f428c6d2 100644 --- a/testkitbackend/server.py +++ b/testkitbackend/server.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/test_subtest_skips.py b/testkitbackend/test_subtest_skips.py index a92ef70f1..276c5ba88 100644 --- a/testkitbackend/test_subtest_skips.py +++ b/testkitbackend/test_subtest_skips.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/testkitbackend/totestkit.py b/testkitbackend/totestkit.py index 6d8591a62..acdc6f412 100644 --- a/testkitbackend/totestkit.py +++ b/testkitbackend/totestkit.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/__init__.py b/tests/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/_async_compat/__init__.py b/tests/_async_compat/__init__.py index 183152153..0446bcb52 100644 --- a/tests/_async_compat/__init__.py +++ b/tests/_async_compat/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/_async_compat/mark_decorator.py b/tests/_async_compat/mark_decorator.py index 6cd4832da..f5bfe6598 100644 --- a/tests/_async_compat/mark_decorator.py +++ b/tests/_async_compat/mark_decorator.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/env.py b/tests/env.py index f3e965cb1..bb721370b 100644 --- a/tests/env.py +++ b/tests/env.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/async_/__init__.py b/tests/integration/async_/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/integration/async_/__init__.py +++ b/tests/integration/async_/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/async_/test_custom_ssl_context.py b/tests/integration/async_/test_custom_ssl_context.py index a13a823c3..bb40a023b 100644 --- a/tests/integration/async_/test_custom_ssl_context.py +++ b/tests/integration/async_/test_custom_ssl_context.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 9c123ac5c..69641d83f 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/__init__.py b/tests/integration/examples/__init__.py index a629622ee..038b8f99c 100644 --- a/tests/integration/examples/__init__.py +++ b/tests/integration/examples/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_autocommit_transaction_example.py b/tests/integration/examples/test_autocommit_transaction_example.py index f4ffa7e73..2a58bc83e 100644 --- a/tests/integration/examples/test_autocommit_transaction_example.py +++ b/tests/integration/examples/test_autocommit_transaction_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_basic_auth_example.py b/tests/integration/examples/test_basic_auth_example.py index 482ac7ba4..8028ce007 100644 --- a/tests/integration/examples/test_basic_auth_example.py +++ b/tests/integration/examples/test_basic_auth_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_bearer_auth_example.py b/tests/integration/examples/test_bearer_auth_example.py index 191ca7e0e..dc43a6fe3 100644 --- a/tests/integration/examples/test_bearer_auth_example.py +++ b/tests/integration/examples/test_bearer_auth_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_connection_pool_example.py b/tests/integration/examples/test_config_connection_pool_example.py index 233adaa6a..5b8d6bb9b 100644 --- a/tests/integration/examples/test_config_connection_pool_example.py +++ b/tests/integration/examples/test_config_connection_pool_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_connection_timeout_example.py b/tests/integration/examples/test_config_connection_timeout_example.py index ef17e2b40..7abc540c3 100644 --- a/tests/integration/examples/test_config_connection_timeout_example.py +++ b/tests/integration/examples/test_config_connection_timeout_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_max_retry_time_example.py b/tests/integration/examples/test_config_max_retry_time_example.py index 3a28235d0..797e01811 100644 --- a/tests/integration/examples/test_config_max_retry_time_example.py +++ b/tests/integration/examples/test_config_max_retry_time_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_secure_example.py b/tests/integration/examples/test_config_secure_example.py index 1c3b1f65a..4f1ae6a05 100644 --- a/tests/integration/examples/test_config_secure_example.py +++ b/tests/integration/examples/test_config_secure_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_trust_example.py b/tests/integration/examples/test_config_trust_example.py index f50dae994..0d0e7ef89 100644 --- a/tests/integration/examples/test_config_trust_example.py +++ b/tests/integration/examples/test_config_trust_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_config_unencrypted_example.py b/tests/integration/examples/test_config_unencrypted_example.py index d04297df2..d031f355b 100644 --- a/tests/integration/examples/test_config_unencrypted_example.py +++ b/tests/integration/examples/test_config_unencrypted_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_custom_auth_example.py b/tests/integration/examples/test_custom_auth_example.py index c9621c6cc..6262d9c08 100644 --- a/tests/integration/examples/test_custom_auth_example.py +++ b/tests/integration/examples/test_custom_auth_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_custom_resolver_example.py b/tests/integration/examples/test_custom_resolver_example.py index 9bc349dec..1c9e1af05 100644 --- a/tests/integration/examples/test_custom_resolver_example.py +++ b/tests/integration/examples/test_custom_resolver_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_cypher_error_example.py b/tests/integration/examples/test_cypher_error_example.py index 411929db8..267021cd4 100644 --- a/tests/integration/examples/test_cypher_error_example.py +++ b/tests/integration/examples/test_cypher_error_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_database_selection_example.py b/tests/integration/examples/test_database_selection_example.py index 65b8b8fcd..87d79b5fd 100644 --- a/tests/integration/examples/test_database_selection_example.py +++ b/tests/integration/examples/test_database_selection_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_driver_introduction_example.py b/tests/integration/examples/test_driver_introduction_example.py index 4348b35f3..b78eb920a 100644 --- a/tests/integration/examples/test_driver_introduction_example.py +++ b/tests/integration/examples/test_driver_introduction_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_driver_lifecycle_example.py b/tests/integration/examples/test_driver_lifecycle_example.py index 3ba188544..0c687c661 100644 --- a/tests/integration/examples/test_driver_lifecycle_example.py +++ b/tests/integration/examples/test_driver_lifecycle_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_geospatial_types_example.py b/tests/integration/examples/test_geospatial_types_example.py index 39a2df8e6..29a6dd951 100644 --- a/tests/integration/examples/test_geospatial_types_example.py +++ b/tests/integration/examples/test_geospatial_types_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_hello_world_example.py b/tests/integration/examples/test_hello_world_example.py index b3c83e8ae..1928be102 100644 --- a/tests/integration/examples/test_hello_world_example.py +++ b/tests/integration/examples/test_hello_world_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_kerberos_auth_example.py b/tests/integration/examples/test_kerberos_auth_example.py index ed8b8c17f..e4cee52f6 100644 --- a/tests/integration/examples/test_kerberos_auth_example.py +++ b/tests/integration/examples/test_kerberos_auth_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_pass_bookmarks_example.py b/tests/integration/examples/test_pass_bookmarks_example.py index 545805d30..036bcb9f9 100644 --- a/tests/integration/examples/test_pass_bookmarks_example.py +++ b/tests/integration/examples/test_pass_bookmarks_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_read_write_transaction_example.py b/tests/integration/examples/test_read_write_transaction_example.py index 787a48496..60b5a5f3c 100644 --- a/tests/integration/examples/test_read_write_transaction_example.py +++ b/tests/integration/examples/test_read_write_transaction_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_result_consume_example.py b/tests/integration/examples/test_result_consume_example.py index 3770d9ed2..9d6e92a14 100644 --- a/tests/integration/examples/test_result_consume_example.py +++ b/tests/integration/examples/test_result_consume_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_result_retain_example.py b/tests/integration/examples/test_result_retain_example.py index 828a82365..6475ba829 100644 --- a/tests/integration/examples/test_result_retain_example.py +++ b/tests/integration/examples/test_result_retain_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_service_unavailable_example.py b/tests/integration/examples/test_service_unavailable_example.py index 21972798a..0c012b484 100644 --- a/tests/integration/examples/test_service_unavailable_example.py +++ b/tests/integration/examples/test_service_unavailable_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_session_example.py b/tests/integration/examples/test_session_example.py index 14302c31f..325016206 100644 --- a/tests/integration/examples/test_session_example.py +++ b/tests/integration/examples/test_session_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_temporal_types_example.py b/tests/integration/examples/test_temporal_types_example.py index 42b17cdc0..06d68dca3 100644 --- a/tests/integration/examples/test_temporal_types_example.py +++ b/tests/integration/examples/test_temporal_types_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_transaction_function_example.py b/tests/integration/examples/test_transaction_function_example.py index e0b6588c0..3fedf50e7 100644 --- a/tests/integration/examples/test_transaction_function_example.py +++ b/tests/integration/examples/test_transaction_function_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_transaction_metadata_config_example.py b/tests/integration/examples/test_transaction_metadata_config_example.py index 8862d22a8..b192e9f17 100644 --- a/tests/integration/examples/test_transaction_metadata_config_example.py +++ b/tests/integration/examples/test_transaction_metadata_config_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/examples/test_transaction_timeout_config_example.py b/tests/integration/examples/test_transaction_timeout_config_example.py index e35036911..1c5e2468c 100644 --- a/tests/integration/examples/test_transaction_timeout_config_example.py +++ b/tests/integration/examples/test_transaction_timeout_config_example.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/sync/__init__.py b/tests/integration/sync/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/integration/sync/__init__.py +++ b/tests/integration/sync/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/sync/test_custom_ssl_context.py b/tests/integration/sync/test_custom_ssl_context.py index 91f491441..df383f30f 100644 --- a/tests/integration/sync/test_custom_ssl_context.py +++ b/tests/integration/sync/test_custom_ssl_context.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/test_bolt_driver.py b/tests/integration/test_bolt_driver.py index 6697dfa2f..796c04fa2 100644 --- a/tests/integration/test_bolt_driver.py +++ b/tests/integration/test_bolt_driver.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/test_readme.py b/tests/integration/test_readme.py index 1a13a4cb4..20a76f741 100644 --- a/tests/integration/test_readme.py +++ b/tests/integration/test_readme.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/integration/test_tx_functions.py b/tests/integration/test_tx_functions.py index bfaa2d58d..1332d91db 100644 --- a/tests/integration/test_tx_functions.py +++ b/tests/integration/test_tx_functions.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/performance/test_async_results.py b/tests/performance/test_async_results.py index 085001e0e..bddc32271 100644 --- a/tests/performance/test_async_results.py +++ b/tests/performance/test_async_results.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/performance/test_results.py b/tests/performance/test_results.py index 9629c7d89..b1716944f 100644 --- a/tests/performance/test_results.py +++ b/tests/performance/test_results.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/performance/tools.py b/tests/performance/tools.py index 511644e59..782e94e6a 100644 --- a/tests/performance/tools.py +++ b/tests/performance/tools.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/__init__.py b/tests/unit/async_/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/async_/__init__.py +++ b/tests/unit/async_/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/__init__.py b/tests/unit/async_/io/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/async_/io/__init__.py +++ b/tests/unit/async_/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/conftest.py b/tests/unit/async_/io/conftest.py index 1da3e44e5..f69d34cef 100644 --- a/tests/unit/async_/io/conftest.py +++ b/tests/unit/async_/io/conftest.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test__common.py b/tests/unit/async_/io/test__common.py index 7fefd5b96..add3db3ac 100644 --- a/tests/unit/async_/io/test__common.py +++ b/tests/unit/async_/io/test__common.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt.py b/tests/unit/async_/io/test_class_bolt.py index 8fcb91587..ba552eef1 100644 --- a/tests/unit/async_/io/test_class_bolt.py +++ b/tests/unit/async_/io/test_class_bolt.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt3.py b/tests/unit/async_/io/test_class_bolt3.py index d23465788..c4b643c91 100644 --- a/tests/unit/async_/io/test_class_bolt3.py +++ b/tests/unit/async_/io/test_class_bolt3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt4x0.py b/tests/unit/async_/io/test_class_bolt4x0.py index 17412f228..a45d6672f 100644 --- a/tests/unit/async_/io/test_class_bolt4x0.py +++ b/tests/unit/async_/io/test_class_bolt4x0.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt4x1.py b/tests/unit/async_/io/test_class_bolt4x1.py index 47667a581..af7876067 100644 --- a/tests/unit/async_/io/test_class_bolt4x1.py +++ b/tests/unit/async_/io/test_class_bolt4x1.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt4x2.py b/tests/unit/async_/io/test_class_bolt4x2.py index 9a5f3e6da..5e40f5c7c 100644 --- a/tests/unit/async_/io/test_class_bolt4x2.py +++ b/tests/unit/async_/io/test_class_bolt4x2.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt4x3.py b/tests/unit/async_/io/test_class_bolt4x3.py index 3297e59d1..d35bc3b6b 100644 --- a/tests/unit/async_/io/test_class_bolt4x3.py +++ b/tests/unit/async_/io/test_class_bolt4x3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_class_bolt4x4.py b/tests/unit/async_/io/test_class_bolt4x4.py index b356657c3..c925918a5 100644 --- a/tests/unit/async_/io/test_class_bolt4x4.py +++ b/tests/unit/async_/io/test_class_bolt4x4.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_direct.py b/tests/unit/async_/io/test_direct.py index 3d3f467a7..b3ee37b2e 100644 --- a/tests/unit/async_/io/test_direct.py +++ b/tests/unit/async_/io/test_direct.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/io/test_neo4j_pool.py b/tests/unit/async_/io/test_neo4j_pool.py index 5b34f808a..eeda874a8 100644 --- a/tests/unit/async_/io/test_neo4j_pool.py +++ b/tests/unit/async_/io/test_neo4j_pool.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/test_addressing.py b/tests/unit/async_/test_addressing.py index 979de2178..55355c6dd 100644 --- a/tests/unit/async_/test_addressing.py +++ b/tests/unit/async_/test_addressing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/test_driver.py b/tests/unit/async_/test_driver.py index 99219bd1a..1a4a3457b 100644 --- a/tests/unit/async_/test_driver.py +++ b/tests/unit/async_/test_driver.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/work/__init__.py b/tests/unit/async_/work/__init__.py index 6b67846a2..ff095c81a 100644 --- a/tests/unit/async_/work/__init__.py +++ b/tests/unit/async_/work/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/work/_fake_connection.py b/tests/unit/async_/work/_fake_connection.py index 72419b542..399c9db41 100644 --- a/tests/unit/async_/work/_fake_connection.py +++ b/tests/unit/async_/work/_fake_connection.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/work/test_result.py b/tests/unit/async_/work/test_result.py index 229cf7f7e..bc8524400 100644 --- a/tests/unit/async_/work/test_result.py +++ b/tests/unit/async_/work/test_result.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/work/test_session.py b/tests/unit/async_/work/test_session.py index b152de7f3..cdd09f220 100644 --- a/tests/unit/async_/work/test_session.py +++ b/tests/unit/async_/work/test_session.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/async_/work/test_transaction.py b/tests/unit/async_/work/test_transaction.py index 519d34233..38caebc24 100644 --- a/tests/unit/async_/work/test_transaction.py +++ b/tests/unit/async_/work/test_transaction.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/__init__.py b/tests/unit/common/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/common/__init__.py +++ b/tests/unit/common/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/data/__init__.py b/tests/unit/common/data/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/common/data/__init__.py +++ b/tests/unit/common/data/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/data/test_packing.py b/tests/unit/common/data/test_packing.py index 0c2fcfbc7..89236d88d 100644 --- a/tests/unit/common/data/test_packing.py +++ b/tests/unit/common/data/test_packing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/io/__init__.py b/tests/unit/common/io/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/common/io/__init__.py +++ b/tests/unit/common/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/io/test_routing.py b/tests/unit/common/io/test_routing.py index 41f09171e..8f15ef151 100644 --- a/tests/unit/common/io/test_routing.py +++ b/tests/unit/common/io/test_routing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/spatial/__init__.py b/tests/unit/common/spatial/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/common/spatial/__init__.py +++ b/tests/unit/common/spatial/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/spatial/test_cartesian_point.py b/tests/unit/common/spatial/test_cartesian_point.py index 259b177b9..41be848f6 100644 --- a/tests/unit/common/spatial/test_cartesian_point.py +++ b/tests/unit/common/spatial/test_cartesian_point.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/spatial/test_point.py b/tests/unit/common/spatial/test_point.py index 74eaa3a74..b8217c336 100644 --- a/tests/unit/common/spatial/test_point.py +++ b/tests/unit/common/spatial/test_point.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/spatial/test_wgs84_point.py b/tests/unit/common/spatial/test_wgs84_point.py index 6c378d0ba..d3c4ee102 100644 --- a/tests/unit/common/spatial/test_wgs84_point.py +++ b/tests/unit/common/spatial/test_wgs84_point.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_addressing.py b/tests/unit/common/test_addressing.py index 925e7017d..ce8774515 100644 --- a/tests/unit/common/test_addressing.py +++ b/tests/unit/common/test_addressing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_api.py b/tests/unit/common/test_api.py index ceb427aac..d1b297773 100644 --- a/tests/unit/common/test_api.py +++ b/tests/unit/common/test_api.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_conf.py b/tests/unit/common/test_conf.py index 4e828dc7a..322c8f736 100644 --- a/tests/unit/common/test_conf.py +++ b/tests/unit/common/test_conf.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_data.py b/tests/unit/common/test_data.py index 7a799a6ca..bac7d7021 100644 --- a/tests/unit/common/test_data.py +++ b/tests/unit/common/test_data.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_exceptions.py b/tests/unit/common/test_exceptions.py index 802e480f5..a1e113c56 100644 --- a/tests/unit/common/test_exceptions.py +++ b/tests/unit/common/test_exceptions.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_import_neo4j.py b/tests/unit/common/test_import_neo4j.py index 89704d9e1..1ac8abe75 100644 --- a/tests/unit/common/test_import_neo4j.py +++ b/tests/unit/common/test_import_neo4j.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_record.py b/tests/unit/common/test_record.py index f976d78b2..b893ff62d 100644 --- a/tests/unit/common/test_record.py +++ b/tests/unit/common/test_record.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_security.py b/tests/unit/common/test_security.py index 247cb4f50..049294d27 100644 --- a/tests/unit/common/test_security.py +++ b/tests/unit/common/test_security.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/test_types.py b/tests/unit/common/test_types.py index 252067601..613399469 100644 --- a/tests/unit/common/test_types.py +++ b/tests/unit/common/test_types.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/__init__.py b/tests/unit/common/time/__init__.py index a3998505e..72f911255 100644 --- a/tests/unit/common/time/__init__.py +++ b/tests/unit/common/time/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_clock.py b/tests/unit/common/time/test_clock.py index c7bef0e41..c628d3d50 100644 --- a/tests/unit/common/time/test_clock.py +++ b/tests/unit/common/time/test_clock.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_clocktime.py b/tests/unit/common/time/test_clocktime.py index 253672cdb..50d6d26b0 100644 --- a/tests/unit/common/time/test_clocktime.py +++ b/tests/unit/common/time/test_clocktime.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_date.py b/tests/unit/common/time/test_date.py index 1e73c4136..89edac6d3 100644 --- a/tests/unit/common/time/test_date.py +++ b/tests/unit/common/time/test_date.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_datetime.py b/tests/unit/common/time/test_datetime.py index 4b3558b5d..bc01cffb6 100644 --- a/tests/unit/common/time/test_datetime.py +++ b/tests/unit/common/time/test_datetime.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_dehydration.py b/tests/unit/common/time/test_dehydration.py index 7fbd4b23f..099a461cc 100644 --- a/tests/unit/common/time/test_dehydration.py +++ b/tests/unit/common/time/test_dehydration.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_duration.py b/tests/unit/common/time/test_duration.py index 279b287f0..c7458ec54 100644 --- a/tests/unit/common/time/test_duration.py +++ b/tests/unit/common/time/test_duration.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_hydration.py b/tests/unit/common/time/test_hydration.py index 033125dd6..1a931f1a8 100644 --- a/tests/unit/common/time/test_hydration.py +++ b/tests/unit/common/time/test_hydration.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/common/time/test_time.py b/tests/unit/common/time/test_time.py index fd78d3324..f73e4f27a 100644 --- a/tests/unit/common/time/test_time.py +++ b/tests/unit/common/time/test_time.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/mixed/__init__.py b/tests/unit/mixed/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/mixed/__init__.py +++ b/tests/unit/mixed/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/mixed/async_compat/__init__.py b/tests/unit/mixed/async_compat/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/mixed/async_compat/__init__.py +++ b/tests/unit/mixed/async_compat/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/mixed/async_compat/test_concurrency.py b/tests/unit/mixed/async_compat/test_concurrency.py index 1bce780d2..9af4b4f8e 100644 --- a/tests/unit/mixed/async_compat/test_concurrency.py +++ b/tests/unit/mixed/async_compat/test_concurrency.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/mixed/io/__init__.py b/tests/unit/mixed/io/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/mixed/io/__init__.py +++ b/tests/unit/mixed/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/mixed/io/test_direct.py b/tests/unit/mixed/io/test_direct.py index 34f5f8d78..f758e61fd 100644 --- a/tests/unit/mixed/io/test_direct.py +++ b/tests/unit/mixed/io/test_direct.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/__init__.py b/tests/unit/sync/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/sync/__init__.py +++ b/tests/unit/sync/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/__init__.py b/tests/unit/sync/io/__init__.py index b81a309da..487bee0b2 100644 --- a/tests/unit/sync/io/__init__.py +++ b/tests/unit/sync/io/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/conftest.py b/tests/unit/sync/io/conftest.py index 33309fc9b..dc5c7504b 100644 --- a/tests/unit/sync/io/conftest.py +++ b/tests/unit/sync/io/conftest.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test__common.py b/tests/unit/sync/io/test__common.py index 5106a2da4..71e3b7aa6 100644 --- a/tests/unit/sync/io/test__common.py +++ b/tests/unit/sync/io/test__common.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt.py b/tests/unit/sync/io/test_class_bolt.py index f6601ae00..d3e63ef6f 100644 --- a/tests/unit/sync/io/test_class_bolt.py +++ b/tests/unit/sync/io/test_class_bolt.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt3.py b/tests/unit/sync/io/test_class_bolt3.py index 2b191eef0..3642c9096 100644 --- a/tests/unit/sync/io/test_class_bolt3.py +++ b/tests/unit/sync/io/test_class_bolt3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt4x0.py b/tests/unit/sync/io/test_class_bolt4x0.py index f1a6cf0f5..e4017eaf2 100644 --- a/tests/unit/sync/io/test_class_bolt4x0.py +++ b/tests/unit/sync/io/test_class_bolt4x0.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt4x1.py b/tests/unit/sync/io/test_class_bolt4x1.py index 473e9926f..66d403166 100644 --- a/tests/unit/sync/io/test_class_bolt4x1.py +++ b/tests/unit/sync/io/test_class_bolt4x1.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt4x2.py b/tests/unit/sync/io/test_class_bolt4x2.py index 1eef06d84..df6590817 100644 --- a/tests/unit/sync/io/test_class_bolt4x2.py +++ b/tests/unit/sync/io/test_class_bolt4x2.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt4x3.py b/tests/unit/sync/io/test_class_bolt4x3.py index 6eec47107..e275ed675 100644 --- a/tests/unit/sync/io/test_class_bolt4x3.py +++ b/tests/unit/sync/io/test_class_bolt4x3.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_class_bolt4x4.py b/tests/unit/sync/io/test_class_bolt4x4.py index ea0a605ab..618a30e2a 100644 --- a/tests/unit/sync/io/test_class_bolt4x4.py +++ b/tests/unit/sync/io/test_class_bolt4x4.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_direct.py b/tests/unit/sync/io/test_direct.py index 88c1643d1..bdfc76036 100644 --- a/tests/unit/sync/io/test_direct.py +++ b/tests/unit/sync/io/test_direct.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/io/test_neo4j_pool.py b/tests/unit/sync/io/test_neo4j_pool.py index 530b52ca0..2ce2bdb66 100644 --- a/tests/unit/sync/io/test_neo4j_pool.py +++ b/tests/unit/sync/io/test_neo4j_pool.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/test_addressing.py b/tests/unit/sync/test_addressing.py index 406e15a27..a8860132c 100644 --- a/tests/unit/sync/test_addressing.py +++ b/tests/unit/sync/test_addressing.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/test_driver.py b/tests/unit/sync/test_driver.py index c9646bf23..26f0d85db 100644 --- a/tests/unit/sync/test_driver.py +++ b/tests/unit/sync/test_driver.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/work/__init__.py b/tests/unit/sync/work/__init__.py index 06447a991..2a9c5e115 100644 --- a/tests/unit/sync/work/__init__.py +++ b/tests/unit/sync/work/__init__.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/work/_fake_connection.py b/tests/unit/sync/work/_fake_connection.py index 18049af3e..c030b9df3 100644 --- a/tests/unit/sync/work/_fake_connection.py +++ b/tests/unit/sync/work/_fake_connection.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/work/test_result.py b/tests/unit/sync/work/test_result.py index b813c4812..07ba5b1c8 100644 --- a/tests/unit/sync/work/test_result.py +++ b/tests/unit/sync/work/test_result.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/work/test_session.py b/tests/unit/sync/work/test_session.py index f2a8aa595..1b4d60978 100644 --- a/tests/unit/sync/work/test_session.py +++ b/tests/unit/sync/work/test_session.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/tests/unit/sync/work/test_transaction.py b/tests/unit/sync/work/test_transaction.py index 56aa2bc64..0e8821736 100644 --- a/tests/unit/sync/work/test_transaction.py +++ b/tests/unit/sync/work/test_transaction.py @@ -7,7 +7,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, From 630c66ad7a5249cf814b279924f39bee8f3dc40b Mon Sep 17 00:00:00 2001 From: Rouven Bauer Date: Wed, 4 May 2022 10:28:25 +0200 Subject: [PATCH 2/3] HTTPS all the links (where possible)! --- CONTRIBUTING.md | 10 +++++----- ISSUE_TEMPLATE.md | 4 ++-- LICENSE.txt | 4 ++-- NOTICE.txt | 2 +- TESTING.md | 2 +- bin/make-unasync | 4 ++-- docs/Makefile | 2 +- docs/make.bat | 2 +- neo4j/__init__.py | 2 +- neo4j/_async/__init__.py | 2 +- neo4j/_async/driver.py | 2 +- neo4j/_async/io/__init__.py | 2 +- neo4j/_async/io/_bolt.py | 2 +- neo4j/_async/io/_bolt3.py | 2 +- neo4j/_async/io/_bolt4.py | 2 +- neo4j/_async/io/_bolt5.py | 2 +- neo4j/_async/io/_common.py | 2 +- neo4j/_async/io/_pool.py | 2 +- neo4j/_async/work/__init__.py | 2 +- neo4j/_async/work/result.py | 2 +- neo4j/_async/work/session.py | 2 +- neo4j/_async/work/transaction.py | 2 +- neo4j/_async/work/workspace.py | 2 +- neo4j/_async_compat/__init__.py | 2 +- neo4j/_async_compat/concurrency.py | 2 +- neo4j/_async_compat/network/__init__.py | 2 +- neo4j/_async_compat/network/_bolt_socket.py | 2 +- neo4j/_async_compat/util.py | 2 +- neo4j/_conf.py | 2 +- neo4j/_exceptions.py | 2 +- neo4j/_sync/__init__.py | 2 +- neo4j/_sync/driver.py | 2 +- neo4j/_sync/io/__init__.py | 2 +- neo4j/_sync/io/_bolt.py | 2 +- neo4j/_sync/io/_bolt3.py | 2 +- neo4j/_sync/io/_bolt4.py | 2 +- neo4j/_sync/io/_bolt5.py | 2 +- neo4j/_sync/io/_common.py | 2 +- neo4j/_sync/io/_pool.py | 2 +- neo4j/_sync/work/__init__.py | 2 +- neo4j/_sync/work/result.py | 2 +- neo4j/_sync/work/session.py | 2 +- neo4j/_sync/work/transaction.py | 2 +- neo4j/_sync/work/workspace.py | 2 +- neo4j/addressing.py | 2 +- neo4j/api.py | 2 +- neo4j/conf.py | 2 +- neo4j/data.py | 2 +- neo4j/debug.py | 2 +- neo4j/exceptions.py | 2 +- neo4j/graph/__init__.py | 2 +- neo4j/meta.py | 2 +- neo4j/packstream.py | 2 +- neo4j/routing.py | 2 +- neo4j/spatial/__init__.py | 2 +- neo4j/time/__init__.py | 2 +- neo4j/time/__main__.py | 2 +- neo4j/time/arithmetic.py | 2 +- neo4j/time/clock_implementations.py | 2 +- neo4j/time/hydration.py | 2 +- neo4j/time/metaclasses.py | 2 +- neo4j/work/__init__.py | 2 +- neo4j/work/query.py | 2 +- neo4j/work/summary.py | 2 +- setup.py | 2 +- testkit/backend.py | 2 +- testkit/build.py | 2 +- testkit/integration.py | 2 +- testkit/stress.py | 2 +- testkit/unittests.py | 2 +- testkitbackend/__init__.py | 2 +- testkitbackend/__main__.py | 2 +- testkitbackend/_async/__init__.py | 2 +- testkitbackend/_async/backend.py | 2 +- testkitbackend/_async/requests.py | 2 +- testkitbackend/_driver_logger.py | 2 +- testkitbackend/_sync/__init__.py | 2 +- testkitbackend/_sync/backend.py | 2 +- testkitbackend/_sync/requests.py | 2 +- testkitbackend/backend.py | 2 +- testkitbackend/exceptions.py | 2 +- testkitbackend/fromtestkit.py | 2 +- testkitbackend/server.py | 2 +- testkitbackend/test_subtest_skips.py | 2 +- testkitbackend/totestkit.py | 2 +- tests/__init__.py | 2 +- tests/_async_compat/__init__.py | 2 +- tests/_async_compat/mark_decorator.py | 2 +- tests/env.py | 2 +- tests/integration/async_/__init__.py | 2 +- tests/integration/async_/test_custom_ssl_context.py | 2 +- tests/integration/conftest.py | 2 +- tests/integration/examples/__init__.py | 2 +- .../examples/test_autocommit_transaction_example.py | 2 +- tests/integration/examples/test_basic_auth_example.py | 2 +- tests/integration/examples/test_bearer_auth_example.py | 2 +- .../examples/test_config_connection_pool_example.py | 2 +- .../examples/test_config_connection_timeout_example.py | 2 +- .../examples/test_config_max_retry_time_example.py | 2 +- .../integration/examples/test_config_secure_example.py | 2 +- .../integration/examples/test_config_trust_example.py | 2 +- .../examples/test_config_unencrypted_example.py | 2 +- tests/integration/examples/test_custom_auth_example.py | 2 +- .../examples/test_custom_resolver_example.py | 2 +- .../integration/examples/test_cypher_error_example.py | 2 +- .../examples/test_database_selection_example.py | 2 +- .../examples/test_driver_introduction_example.py | 2 +- .../examples/test_driver_lifecycle_example.py | 2 +- .../examples/test_geospatial_types_example.py | 2 +- tests/integration/examples/test_hello_world_example.py | 2 +- .../integration/examples/test_kerberos_auth_example.py | 2 +- .../examples/test_pass_bookmarks_example.py | 2 +- .../examples/test_read_write_transaction_example.py | 2 +- .../examples/test_result_consume_example.py | 2 +- .../integration/examples/test_result_retain_example.py | 2 +- .../examples/test_service_unavailable_example.py | 2 +- tests/integration/examples/test_session_example.py | 2 +- .../examples/test_temporal_types_example.py | 2 +- .../examples/test_transaction_function_example.py | 2 +- .../test_transaction_metadata_config_example.py | 2 +- .../test_transaction_timeout_config_example.py | 2 +- tests/integration/sync/__init__.py | 2 +- tests/integration/sync/test_custom_ssl_context.py | 2 +- tests/integration/test_bolt_driver.py | 2 +- tests/integration/test_readme.py | 2 +- tests/integration/test_tx_functions.py | 2 +- tests/performance/test_async_results.py | 2 +- tests/performance/test_results.py | 2 +- tests/performance/tools.py | 2 +- tests/unit/__init__.py | 2 +- tests/unit/async_/__init__.py | 2 +- tests/unit/async_/io/__init__.py | 2 +- tests/unit/async_/io/conftest.py | 2 +- tests/unit/async_/io/test__common.py | 2 +- tests/unit/async_/io/test_class_bolt.py | 2 +- tests/unit/async_/io/test_class_bolt3.py | 2 +- tests/unit/async_/io/test_class_bolt4x0.py | 2 +- tests/unit/async_/io/test_class_bolt4x1.py | 2 +- tests/unit/async_/io/test_class_bolt4x2.py | 2 +- tests/unit/async_/io/test_class_bolt4x3.py | 2 +- tests/unit/async_/io/test_class_bolt4x4.py | 2 +- tests/unit/async_/io/test_direct.py | 2 +- tests/unit/async_/io/test_neo4j_pool.py | 2 +- tests/unit/async_/test_addressing.py | 2 +- tests/unit/async_/test_driver.py | 2 +- tests/unit/async_/work/__init__.py | 2 +- tests/unit/async_/work/_fake_connection.py | 2 +- tests/unit/async_/work/test_result.py | 2 +- tests/unit/async_/work/test_session.py | 2 +- tests/unit/async_/work/test_transaction.py | 2 +- tests/unit/common/__init__.py | 2 +- tests/unit/common/data/__init__.py | 2 +- tests/unit/common/data/test_packing.py | 2 +- tests/unit/common/io/__init__.py | 2 +- tests/unit/common/io/test_routing.py | 2 +- tests/unit/common/spatial/__init__.py | 2 +- tests/unit/common/spatial/test_cartesian_point.py | 2 +- tests/unit/common/spatial/test_point.py | 2 +- tests/unit/common/spatial/test_wgs84_point.py | 2 +- tests/unit/common/test_addressing.py | 2 +- tests/unit/common/test_api.py | 2 +- tests/unit/common/test_conf.py | 2 +- tests/unit/common/test_data.py | 2 +- tests/unit/common/test_exceptions.py | 2 +- tests/unit/common/test_import_neo4j.py | 2 +- tests/unit/common/test_record.py | 2 +- tests/unit/common/test_security.py | 2 +- tests/unit/common/test_types.py | 2 +- tests/unit/common/time/__init__.py | 2 +- tests/unit/common/time/test_clock.py | 2 +- tests/unit/common/time/test_clocktime.py | 2 +- tests/unit/common/time/test_date.py | 2 +- tests/unit/common/time/test_datetime.py | 2 +- tests/unit/common/time/test_dehydration.py | 2 +- tests/unit/common/time/test_duration.py | 2 +- tests/unit/common/time/test_hydration.py | 2 +- tests/unit/common/time/test_time.py | 2 +- tests/unit/mixed/__init__.py | 2 +- tests/unit/mixed/async_compat/__init__.py | 2 +- tests/unit/mixed/async_compat/test_concurrency.py | 2 +- tests/unit/mixed/io/__init__.py | 2 +- tests/unit/mixed/io/test_direct.py | 2 +- tests/unit/sync/__init__.py | 2 +- tests/unit/sync/io/__init__.py | 2 +- tests/unit/sync/io/conftest.py | 2 +- tests/unit/sync/io/test__common.py | 2 +- tests/unit/sync/io/test_class_bolt.py | 2 +- tests/unit/sync/io/test_class_bolt3.py | 2 +- tests/unit/sync/io/test_class_bolt4x0.py | 2 +- tests/unit/sync/io/test_class_bolt4x1.py | 2 +- tests/unit/sync/io/test_class_bolt4x2.py | 2 +- tests/unit/sync/io/test_class_bolt4x3.py | 2 +- tests/unit/sync/io/test_class_bolt4x4.py | 2 +- tests/unit/sync/io/test_direct.py | 2 +- tests/unit/sync/io/test_neo4j_pool.py | 2 +- tests/unit/sync/test_addressing.py | 2 +- tests/unit/sync/test_driver.py | 2 +- tests/unit/sync/work/__init__.py | 2 +- tests/unit/sync/work/_fake_connection.py | 2 +- tests/unit/sync/work/test_result.py | 2 +- tests/unit/sync/work/test_session.py | 2 +- tests/unit/sync/work/test_transaction.py | 2 +- 202 files changed, 209 insertions(+), 209 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d2656fd6c..6fdb540e3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to the Neo4j Ecosystem -At [Neo4j](http://neo4j.com/), we develop our software in the open at GitHub. +At [Neo4j](https://neo4j.com/), we develop our software in the open at GitHub. This provides transparency for you, our users, and allows you to fork the software to make your own additions and enhancements. We also provide areas specifically for community contributions, in particular the [neo4j-contrib](https://github.com/neo4j-contrib) space. @@ -14,14 +14,14 @@ We love our community and wouldn't be where we are without you. Where you raise an issue depends largely on the nature of the problem. -Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](http://support.neo4j.com/). +Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](https://support.neo4j.com/). There are plenty of public channels available too, though. If you simply want to get started or have a question on how to use a particular feature, ask a question in [Neo4j Online Community](https://community.neo4j.com/). If you think you might have hit a bug in our software (it happens occasionally!) or you have specific feature request then use the issue feature on the relevant GitHub repository. Check first though as someone else may have already raised something similar. -[StackOverflow](http://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem. +[StackOverflow](https://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem. Make sure you have a look there too. Include as much information as you can in any request you make: @@ -44,7 +44,7 @@ If you want to contribute a pull request, we have a little bit of process you'll - Create a branch (with a useful name) for your contribution - Make sure you're familiar with the appropriate coding style (this varies by language so ask if you're in doubt) - Include unit tests if appropriate (obviously not necessary for documentation changes) -- Take a moment to read and sign our [CLA](http://neo4j.com/developer/cla) +- Take a moment to read and sign our [CLA](https://neo4j.com/developer/cla) We can't guarantee that we'll accept pull requests and may ask you to make some changes before they go in. Occasionally, we might also have logistical, commercial, or legal reasons why we can't accept your work but we'll try to find an alternative way for you to contribute in that case. @@ -81,4 +81,4 @@ And we'll do our best to help you promote and co-ordinate your Neo4j ecosystem p ## Further reading -If you want to find out more about how you can contribute, head over to our website for [more information](http://neo4j.com/developer/contributing-code/). +If you want to find out more about how you can contribute, head over to our website for [more information](https://neo4j.com/developer/contributing-code/). diff --git a/ISSUE_TEMPLATE.md b/ISSUE_TEMPLATE.md index 0a9addf8d..387929f06 100644 --- a/ISSUE_TEMPLATE.md +++ b/ISSUE_TEMPLATE.md @@ -1,12 +1,12 @@ ## Guidelines -Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](http://support.neo4j.com/). +Firstly, if you are an Enterprise customer, you might want to head over to our [Customer Support Portal](https://support.neo4j.com/). If you think you might have **hit a bug** in our software (it happens occasionally!) or you have specific **feature request** then use the issue feature on the relevant GitHub repository. Check first though as someone else may have already raised something similar. If you simply want to get started or have a question on how to use a particular feature, ask a question in [Neo4j Online Community](https://community.neo4j.com/) instead. -[StackOverflow](http://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem. +[StackOverflow](https://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem. Make sure you have a look there too. If you want to make a feature request, please prefix your issue title with `[Feature Request]` so that it is clear to us. diff --git a/LICENSE.txt b/LICENSE.txt index d64569567..62589edd1 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ Apache License Version 2.0, January 2004 - http://www.apache.org/licenses/ + https://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION @@ -193,7 +193,7 @@ you may not use this file except in compliance with the License. You may obtain a copy of the License at - http://www.apache.org/licenses/LICENSE-2.0 + https://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, diff --git a/NOTICE.txt b/NOTICE.txt index ace851fb9..49cdc9859 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,4 +1,4 @@ Neo4j -Copyright (c) Neo4j Sweden AB (referred to in this notice as "Neo4j") [http://neo4j.com] +Copyright (c) Neo4j Sweden AB (referred to in this notice as "Neo4j") [https://neo4j.com] This product includes software ("Software") developed by Neo4j diff --git a/TESTING.md b/TESTING.md index cddc698b1..3d6536d6d 100644 --- a/TESTING.md +++ b/TESTING.md @@ -23,7 +23,7 @@ $ NEO4J_SERVER_PACKAGE=~/dist/neo4j-enterprise-3.1.1-unix.tar.gz tox A web address can be provided as an alternative to a file path: ```bash -$ NEO4J_SERVER_PACKAGE=http://dist.neo4j.org/neo4j-enterprise-3.1.1-unix.tar.gz tox +$ NEO4J_SERVER_PACKAGE=https://dist.neo4j.org/neo4j-enterprise-3.1.1-unix.tar.gz tox ``` If using an existing server, authentication details can be provided in a similar way: diff --git a/bin/make-unasync b/bin/make-unasync index e8f8efda8..6fe47b8c5 100755 --- a/bin/make-unasync +++ b/bin/make-unasync @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # @@ -9,7 +9,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/docs/Makefile b/docs/Makefile index 8d8890046..1bc069807 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -9,7 +9,7 @@ BUILDDIR = build # User-friendly check for sphinx-build ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) -$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) +$(error The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed, then set the SPHINXBUILD environment variable to point to the full path of the '$(SPHINXBUILD)' executable. Alternatively you can add the directory with the executable to your PATH. If you don't have Sphinx installed, grab it from https://www.sphinx-doc.org/) endif # Internal variables. diff --git a/docs/make.bat b/docs/make.bat index 5af10075f..ec8f3ec12 100644 --- a/docs/make.bat +++ b/docs/make.bat @@ -65,7 +65,7 @@ if errorlevel 9009 ( echo.may add the Sphinx directory to PATH. echo. echo.If you don't have Sphinx installed, grab it from - echo.http://sphinx-doc.org/ + echo.https://www.sphinx-doc.org/ exit /b 1 ) diff --git a/neo4j/__init__.py b/neo4j/__init__.py index 0e58cd10e..435bf3649 100644 --- a/neo4j/__init__.py +++ b/neo4j/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/__init__.py b/neo4j/_async/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/neo4j/_async/__init__.py +++ b/neo4j/_async/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/driver.py b/neo4j/_async/driver.py index 6863881a8..254742ca0 100644 --- a/neo4j/_async/driver.py +++ b/neo4j/_async/driver.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/__init__.py b/neo4j/_async/io/__init__.py index 1454adb09..3b28553e2 100644 --- a/neo4j/_async/io/__init__.py +++ b/neo4j/_async/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_bolt.py b/neo4j/_async/io/_bolt.py index ad758feb3..42e5c8102 100644 --- a/neo4j/_async/io/_bolt.py +++ b/neo4j/_async/io/_bolt.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_bolt3.py b/neo4j/_async/io/_bolt3.py index 823c7d9b2..0a92091f6 100644 --- a/neo4j/_async/io/_bolt3.py +++ b/neo4j/_async/io/_bolt3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_bolt4.py b/neo4j/_async/io/_bolt4.py index 6b2f1cd7a..376cdaa32 100644 --- a/neo4j/_async/io/_bolt4.py +++ b/neo4j/_async/io/_bolt4.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_bolt5.py b/neo4j/_async/io/_bolt5.py index cc932fc6b..54b3e6e84 100644 --- a/neo4j/_async/io/_bolt5.py +++ b/neo4j/_async/io/_bolt5.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_common.py b/neo4j/_async/io/_common.py index 31d912700..4c1e6e7b0 100644 --- a/neo4j/_async/io/_common.py +++ b/neo4j/_async/io/_common.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/io/_pool.py b/neo4j/_async/io/_pool.py index 2262a152d..6c544d478 100644 --- a/neo4j/_async/io/_pool.py +++ b/neo4j/_async/io/_pool.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/work/__init__.py b/neo4j/_async/work/__init__.py index e49ed8d7b..02099c422 100644 --- a/neo4j/_async/work/__init__.py +++ b/neo4j/_async/work/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/work/result.py b/neo4j/_async/work/result.py index 13b7db7bb..885d1286d 100644 --- a/neo4j/_async/work/result.py +++ b/neo4j/_async/work/result.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/work/session.py b/neo4j/_async/work/session.py index 27522f07b..b57272b83 100644 --- a/neo4j/_async/work/session.py +++ b/neo4j/_async/work/session.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/work/transaction.py b/neo4j/_async/work/transaction.py index f9623569c..e293a8ecd 100644 --- a/neo4j/_async/work/transaction.py +++ b/neo4j/_async/work/transaction.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async/work/workspace.py b/neo4j/_async/work/workspace.py index d2dcb28d4..d9ad20f7a 100644 --- a/neo4j/_async/work/workspace.py +++ b/neo4j/_async/work/workspace.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async_compat/__init__.py b/neo4j/_async_compat/__init__.py index 52dd9b357..24833a9ff 100644 --- a/neo4j/_async_compat/__init__.py +++ b/neo4j/_async_compat/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async_compat/concurrency.py b/neo4j/_async_compat/concurrency.py index 4859262b1..e9db0e6c8 100644 --- a/neo4j/_async_compat/concurrency.py +++ b/neo4j/_async_compat/concurrency.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async_compat/network/__init__.py b/neo4j/_async_compat/network/__init__.py index 7ce98e782..cc3806d46 100644 --- a/neo4j/_async_compat/network/__init__.py +++ b/neo4j/_async_compat/network/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async_compat/network/_bolt_socket.py b/neo4j/_async_compat/network/_bolt_socket.py index 3c2014cea..0653ed7b2 100644 --- a/neo4j/_async_compat/network/_bolt_socket.py +++ b/neo4j/_async_compat/network/_bolt_socket.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_async_compat/util.py b/neo4j/_async_compat/util.py index 7b37263ca..98e29369a 100644 --- a/neo4j/_async_compat/util.py +++ b/neo4j/_async_compat/util.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_conf.py b/neo4j/_conf.py index 38ec4c5d7..065c892a5 100644 --- a/neo4j/_conf.py +++ b/neo4j/_conf.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_exceptions.py b/neo4j/_exceptions.py index a69fa6670..5b5320248 100644 --- a/neo4j/_exceptions.py +++ b/neo4j/_exceptions.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/__init__.py b/neo4j/_sync/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/neo4j/_sync/__init__.py +++ b/neo4j/_sync/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/driver.py b/neo4j/_sync/driver.py index 6a38e0580..975c7048f 100644 --- a/neo4j/_sync/driver.py +++ b/neo4j/_sync/driver.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/__init__.py b/neo4j/_sync/io/__init__.py index 87f210c00..18aa1149e 100644 --- a/neo4j/_sync/io/__init__.py +++ b/neo4j/_sync/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_bolt.py b/neo4j/_sync/io/_bolt.py index f795c1627..a7bda8c84 100644 --- a/neo4j/_sync/io/_bolt.py +++ b/neo4j/_sync/io/_bolt.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_bolt3.py b/neo4j/_sync/io/_bolt3.py index ee69b8d1b..22d5782f0 100644 --- a/neo4j/_sync/io/_bolt3.py +++ b/neo4j/_sync/io/_bolt3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_bolt4.py b/neo4j/_sync/io/_bolt4.py index 0dd995738..dfa2ae289 100644 --- a/neo4j/_sync/io/_bolt4.py +++ b/neo4j/_sync/io/_bolt4.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_bolt5.py b/neo4j/_sync/io/_bolt5.py index 05b7c54d7..8066d3716 100644 --- a/neo4j/_sync/io/_bolt5.py +++ b/neo4j/_sync/io/_bolt5.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_common.py b/neo4j/_sync/io/_common.py index e19c8112e..1b7e5a8d1 100644 --- a/neo4j/_sync/io/_common.py +++ b/neo4j/_sync/io/_common.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/io/_pool.py b/neo4j/_sync/io/_pool.py index 0f5ff7ce9..c4e41f7dc 100644 --- a/neo4j/_sync/io/_pool.py +++ b/neo4j/_sync/io/_pool.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/work/__init__.py b/neo4j/_sync/work/__init__.py index 47bc4c14d..1ab2ffadf 100644 --- a/neo4j/_sync/work/__init__.py +++ b/neo4j/_sync/work/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/work/result.py b/neo4j/_sync/work/result.py index a717d03d2..7c4579d1c 100644 --- a/neo4j/_sync/work/result.py +++ b/neo4j/_sync/work/result.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/work/session.py b/neo4j/_sync/work/session.py index 933e3f8b8..24d30e59d 100644 --- a/neo4j/_sync/work/session.py +++ b/neo4j/_sync/work/session.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/work/transaction.py b/neo4j/_sync/work/transaction.py index 4abdc14ac..9b6b29c4b 100644 --- a/neo4j/_sync/work/transaction.py +++ b/neo4j/_sync/work/transaction.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/_sync/work/workspace.py b/neo4j/_sync/work/workspace.py index cf8e5c642..9a2c01801 100644 --- a/neo4j/_sync/work/workspace.py +++ b/neo4j/_sync/work/workspace.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/addressing.py b/neo4j/addressing.py index 128bcd359..58ef8dccf 100644 --- a/neo4j/addressing.py +++ b/neo4j/addressing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/api.py b/neo4j/api.py index 73625506c..58292ad83 100644 --- a/neo4j/api.py +++ b/neo4j/api.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/conf.py b/neo4j/conf.py index 683624f71..f060891be 100644 --- a/neo4j/conf.py +++ b/neo4j/conf.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/data.py b/neo4j/data.py index f6a9b243d..7ce3e712e 100644 --- a/neo4j/data.py +++ b/neo4j/data.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/debug.py b/neo4j/debug.py index c8bcf99db..b1a191cab 100644 --- a/neo4j/debug.py +++ b/neo4j/debug.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/exceptions.py b/neo4j/exceptions.py index 7a741a9a6..1bf45def5 100644 --- a/neo4j/exceptions.py +++ b/neo4j/exceptions.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/graph/__init__.py b/neo4j/graph/__init__.py index 7daedd8bd..c1721512a 100644 --- a/neo4j/graph/__init__.py +++ b/neo4j/graph/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/meta.py b/neo4j/meta.py index 247aad5c4..0e487c2e2 100644 --- a/neo4j/meta.py +++ b/neo4j/meta.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/packstream.py b/neo4j/packstream.py index db627f169..92bf6b96b 100644 --- a/neo4j/packstream.py +++ b/neo4j/packstream.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/routing.py b/neo4j/routing.py index 5a764e00a..99364fccc 100644 --- a/neo4j/routing.py +++ b/neo4j/routing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/spatial/__init__.py b/neo4j/spatial/__init__.py index 81f13f05e..ab1d01793 100644 --- a/neo4j/spatial/__init__.py +++ b/neo4j/spatial/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/__init__.py b/neo4j/time/__init__.py index 3b0185d54..4e38ed1bb 100644 --- a/neo4j/time/__init__.py +++ b/neo4j/time/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/__main__.py b/neo4j/time/__main__.py index 64c09eb25..ec3469a07 100644 --- a/neo4j/time/__main__.py +++ b/neo4j/time/__main__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/arithmetic.py b/neo4j/time/arithmetic.py index 437016a32..6ab7b6581 100644 --- a/neo4j/time/arithmetic.py +++ b/neo4j/time/arithmetic.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/clock_implementations.py b/neo4j/time/clock_implementations.py index 3d7c9965a..38e93ab5b 100644 --- a/neo4j/time/clock_implementations.py +++ b/neo4j/time/clock_implementations.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/hydration.py b/neo4j/time/hydration.py index 2a6171240..056cafda0 100644 --- a/neo4j/time/hydration.py +++ b/neo4j/time/hydration.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/time/metaclasses.py b/neo4j/time/metaclasses.py index 341df0b51..95be7e96c 100644 --- a/neo4j/time/metaclasses.py +++ b/neo4j/time/metaclasses.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/work/__init__.py b/neo4j/work/__init__.py index 09b50b5b3..44ed80a33 100644 --- a/neo4j/work/__init__.py +++ b/neo4j/work/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/work/query.py b/neo4j/work/query.py index 56f18eeda..e10cf82ba 100644 --- a/neo4j/work/query.py +++ b/neo4j/work/query.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/neo4j/work/summary.py b/neo4j/work/summary.py index 19963b8fd..a7ce27921 100644 --- a/neo4j/work/summary.py +++ b/neo4j/work/summary.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/setup.py b/setup.py index fe8535bb8..31ce78611 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkit/backend.py b/testkit/backend.py index 1419b3add..745ca8e02 100644 --- a/testkit/backend.py +++ b/testkit/backend.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkit/build.py b/testkit/build.py index ad75b12b0..2206d709f 100644 --- a/testkit/build.py +++ b/testkit/build.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkit/integration.py b/testkit/integration.py index 6de4eda6e..590a9f449 100644 --- a/testkit/integration.py +++ b/testkit/integration.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkit/stress.py b/testkit/stress.py index 84edded90..2b4fdc57b 100644 --- a/testkit/stress.py +++ b/testkit/stress.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkit/unittests.py b/testkit/unittests.py index ba059abb9..22e655a3f 100644 --- a/testkit/unittests.py +++ b/testkit/unittests.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/__init__.py b/testkitbackend/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/testkitbackend/__init__.py +++ b/testkitbackend/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/__main__.py b/testkitbackend/__main__.py index 8511f0d89..a6c7a8ecd 100644 --- a/testkitbackend/__main__.py +++ b/testkitbackend/__main__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_async/__init__.py b/testkitbackend/_async/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/testkitbackend/_async/__init__.py +++ b/testkitbackend/_async/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_async/backend.py b/testkitbackend/_async/backend.py index bd9925f5a..fce7386af 100644 --- a/testkitbackend/_async/backend.py +++ b/testkitbackend/_async/backend.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_async/requests.py b/testkitbackend/_async/requests.py index 0b84efbe4..abd345e56 100644 --- a/testkitbackend/_async/requests.py +++ b/testkitbackend/_async/requests.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_driver_logger.py b/testkitbackend/_driver_logger.py index 3edf45962..9c64f75de 100644 --- a/testkitbackend/_driver_logger.py +++ b/testkitbackend/_driver_logger.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_sync/__init__.py b/testkitbackend/_sync/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/testkitbackend/_sync/__init__.py +++ b/testkitbackend/_sync/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_sync/backend.py b/testkitbackend/_sync/backend.py index 2c5ed6cf5..625e2ee9e 100644 --- a/testkitbackend/_sync/backend.py +++ b/testkitbackend/_sync/backend.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/_sync/requests.py b/testkitbackend/_sync/requests.py index 3b6067ec3..a3d1dc13c 100644 --- a/testkitbackend/_sync/requests.py +++ b/testkitbackend/_sync/requests.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/backend.py b/testkitbackend/backend.py index 30a247b29..3dc321046 100644 --- a/testkitbackend/backend.py +++ b/testkitbackend/backend.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/exceptions.py b/testkitbackend/exceptions.py index 32129914e..042eab8c0 100644 --- a/testkitbackend/exceptions.py +++ b/testkitbackend/exceptions.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/fromtestkit.py b/testkitbackend/fromtestkit.py index b336603b4..a320ea780 100644 --- a/testkitbackend/fromtestkit.py +++ b/testkitbackend/fromtestkit.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/server.py b/testkitbackend/server.py index 1f428c6d2..f7ec85b9d 100644 --- a/testkitbackend/server.py +++ b/testkitbackend/server.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/test_subtest_skips.py b/testkitbackend/test_subtest_skips.py index 276c5ba88..68b02b471 100644 --- a/testkitbackend/test_subtest_skips.py +++ b/testkitbackend/test_subtest_skips.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/testkitbackend/totestkit.py b/testkitbackend/totestkit.py index acdc6f412..e81ff8fb9 100644 --- a/testkitbackend/totestkit.py +++ b/testkitbackend/totestkit.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/__init__.py b/tests/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/_async_compat/__init__.py b/tests/_async_compat/__init__.py index 0446bcb52..b9aec02c4 100644 --- a/tests/_async_compat/__init__.py +++ b/tests/_async_compat/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/_async_compat/mark_decorator.py b/tests/_async_compat/mark_decorator.py index f5bfe6598..cfb42f453 100644 --- a/tests/_async_compat/mark_decorator.py +++ b/tests/_async_compat/mark_decorator.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/env.py b/tests/env.py index bb721370b..2bcfd0e30 100644 --- a/tests/env.py +++ b/tests/env.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/async_/__init__.py b/tests/integration/async_/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/integration/async_/__init__.py +++ b/tests/integration/async_/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/async_/test_custom_ssl_context.py b/tests/integration/async_/test_custom_ssl_context.py index bb40a023b..82222a680 100644 --- a/tests/integration/async_/test_custom_ssl_context.py +++ b/tests/integration/async_/test_custom_ssl_context.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 69641d83f..dbcba8128 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/__init__.py b/tests/integration/examples/__init__.py index 038b8f99c..3c957c1d9 100644 --- a/tests/integration/examples/__init__.py +++ b/tests/integration/examples/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_autocommit_transaction_example.py b/tests/integration/examples/test_autocommit_transaction_example.py index 2a58bc83e..b505e3a0c 100644 --- a/tests/integration/examples/test_autocommit_transaction_example.py +++ b/tests/integration/examples/test_autocommit_transaction_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_basic_auth_example.py b/tests/integration/examples/test_basic_auth_example.py index 8028ce007..93fed59b1 100644 --- a/tests/integration/examples/test_basic_auth_example.py +++ b/tests/integration/examples/test_basic_auth_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_bearer_auth_example.py b/tests/integration/examples/test_bearer_auth_example.py index dc43a6fe3..3e8a8b9ef 100644 --- a/tests/integration/examples/test_bearer_auth_example.py +++ b/tests/integration/examples/test_bearer_auth_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_connection_pool_example.py b/tests/integration/examples/test_config_connection_pool_example.py index 5b8d6bb9b..4a68e1be9 100644 --- a/tests/integration/examples/test_config_connection_pool_example.py +++ b/tests/integration/examples/test_config_connection_pool_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_connection_timeout_example.py b/tests/integration/examples/test_config_connection_timeout_example.py index 7abc540c3..2ca7945e8 100644 --- a/tests/integration/examples/test_config_connection_timeout_example.py +++ b/tests/integration/examples/test_config_connection_timeout_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_max_retry_time_example.py b/tests/integration/examples/test_config_max_retry_time_example.py index 797e01811..c0bfb6fa5 100644 --- a/tests/integration/examples/test_config_max_retry_time_example.py +++ b/tests/integration/examples/test_config_max_retry_time_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_secure_example.py b/tests/integration/examples/test_config_secure_example.py index 4f1ae6a05..b10f03619 100644 --- a/tests/integration/examples/test_config_secure_example.py +++ b/tests/integration/examples/test_config_secure_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_trust_example.py b/tests/integration/examples/test_config_trust_example.py index 0d0e7ef89..189b4e18e 100644 --- a/tests/integration/examples/test_config_trust_example.py +++ b/tests/integration/examples/test_config_trust_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_config_unencrypted_example.py b/tests/integration/examples/test_config_unencrypted_example.py index d031f355b..34688b1cf 100644 --- a/tests/integration/examples/test_config_unencrypted_example.py +++ b/tests/integration/examples/test_config_unencrypted_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_custom_auth_example.py b/tests/integration/examples/test_custom_auth_example.py index 6262d9c08..3d792734d 100644 --- a/tests/integration/examples/test_custom_auth_example.py +++ b/tests/integration/examples/test_custom_auth_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_custom_resolver_example.py b/tests/integration/examples/test_custom_resolver_example.py index 1c9e1af05..a4e762a37 100644 --- a/tests/integration/examples/test_custom_resolver_example.py +++ b/tests/integration/examples/test_custom_resolver_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_cypher_error_example.py b/tests/integration/examples/test_cypher_error_example.py index 267021cd4..c46903a01 100644 --- a/tests/integration/examples/test_cypher_error_example.py +++ b/tests/integration/examples/test_cypher_error_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_database_selection_example.py b/tests/integration/examples/test_database_selection_example.py index 87d79b5fd..0a678400b 100644 --- a/tests/integration/examples/test_database_selection_example.py +++ b/tests/integration/examples/test_database_selection_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_driver_introduction_example.py b/tests/integration/examples/test_driver_introduction_example.py index b78eb920a..b5fe40801 100644 --- a/tests/integration/examples/test_driver_introduction_example.py +++ b/tests/integration/examples/test_driver_introduction_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_driver_lifecycle_example.py b/tests/integration/examples/test_driver_lifecycle_example.py index 0c687c661..09c5d5138 100644 --- a/tests/integration/examples/test_driver_lifecycle_example.py +++ b/tests/integration/examples/test_driver_lifecycle_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_geospatial_types_example.py b/tests/integration/examples/test_geospatial_types_example.py index 29a6dd951..1f6ca0114 100644 --- a/tests/integration/examples/test_geospatial_types_example.py +++ b/tests/integration/examples/test_geospatial_types_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_hello_world_example.py b/tests/integration/examples/test_hello_world_example.py index 1928be102..be80ec9ed 100644 --- a/tests/integration/examples/test_hello_world_example.py +++ b/tests/integration/examples/test_hello_world_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_kerberos_auth_example.py b/tests/integration/examples/test_kerberos_auth_example.py index e4cee52f6..799bd034a 100644 --- a/tests/integration/examples/test_kerberos_auth_example.py +++ b/tests/integration/examples/test_kerberos_auth_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_pass_bookmarks_example.py b/tests/integration/examples/test_pass_bookmarks_example.py index 036bcb9f9..c5e823ebb 100644 --- a/tests/integration/examples/test_pass_bookmarks_example.py +++ b/tests/integration/examples/test_pass_bookmarks_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_read_write_transaction_example.py b/tests/integration/examples/test_read_write_transaction_example.py index 60b5a5f3c..89e44cbd1 100644 --- a/tests/integration/examples/test_read_write_transaction_example.py +++ b/tests/integration/examples/test_read_write_transaction_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_result_consume_example.py b/tests/integration/examples/test_result_consume_example.py index 9d6e92a14..c8f748158 100644 --- a/tests/integration/examples/test_result_consume_example.py +++ b/tests/integration/examples/test_result_consume_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_result_retain_example.py b/tests/integration/examples/test_result_retain_example.py index 6475ba829..1d401e5d0 100644 --- a/tests/integration/examples/test_result_retain_example.py +++ b/tests/integration/examples/test_result_retain_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_service_unavailable_example.py b/tests/integration/examples/test_service_unavailable_example.py index 0c012b484..ab4c7d507 100644 --- a/tests/integration/examples/test_service_unavailable_example.py +++ b/tests/integration/examples/test_service_unavailable_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_session_example.py b/tests/integration/examples/test_session_example.py index 325016206..c00b00843 100644 --- a/tests/integration/examples/test_session_example.py +++ b/tests/integration/examples/test_session_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_temporal_types_example.py b/tests/integration/examples/test_temporal_types_example.py index 06d68dca3..1133f09d6 100644 --- a/tests/integration/examples/test_temporal_types_example.py +++ b/tests/integration/examples/test_temporal_types_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_transaction_function_example.py b/tests/integration/examples/test_transaction_function_example.py index 3fedf50e7..17bdd4234 100644 --- a/tests/integration/examples/test_transaction_function_example.py +++ b/tests/integration/examples/test_transaction_function_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_transaction_metadata_config_example.py b/tests/integration/examples/test_transaction_metadata_config_example.py index b192e9f17..aadb2ad46 100644 --- a/tests/integration/examples/test_transaction_metadata_config_example.py +++ b/tests/integration/examples/test_transaction_metadata_config_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/examples/test_transaction_timeout_config_example.py b/tests/integration/examples/test_transaction_timeout_config_example.py index 1c5e2468c..0f7161015 100644 --- a/tests/integration/examples/test_transaction_timeout_config_example.py +++ b/tests/integration/examples/test_transaction_timeout_config_example.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/sync/__init__.py b/tests/integration/sync/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/integration/sync/__init__.py +++ b/tests/integration/sync/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/sync/test_custom_ssl_context.py b/tests/integration/sync/test_custom_ssl_context.py index df383f30f..0d2cb6669 100644 --- a/tests/integration/sync/test_custom_ssl_context.py +++ b/tests/integration/sync/test_custom_ssl_context.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/test_bolt_driver.py b/tests/integration/test_bolt_driver.py index 796c04fa2..df8b14fe1 100644 --- a/tests/integration/test_bolt_driver.py +++ b/tests/integration/test_bolt_driver.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/test_readme.py b/tests/integration/test_readme.py index 20a76f741..d9e1101ee 100644 --- a/tests/integration/test_readme.py +++ b/tests/integration/test_readme.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/integration/test_tx_functions.py b/tests/integration/test_tx_functions.py index 1332d91db..46421bf20 100644 --- a/tests/integration/test_tx_functions.py +++ b/tests/integration/test_tx_functions.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/performance/test_async_results.py b/tests/performance/test_async_results.py index bddc32271..f0bc2548f 100644 --- a/tests/performance/test_async_results.py +++ b/tests/performance/test_async_results.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/performance/test_results.py b/tests/performance/test_results.py index b1716944f..6a2205b0d 100644 --- a/tests/performance/test_results.py +++ b/tests/performance/test_results.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/performance/tools.py b/tests/performance/tools.py index 782e94e6a..27dfb886c 100644 --- a/tests/performance/tools.py +++ b/tests/performance/tools.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/__init__.py b/tests/unit/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/__init__.py b/tests/unit/async_/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/async_/__init__.py +++ b/tests/unit/async_/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/__init__.py b/tests/unit/async_/io/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/async_/io/__init__.py +++ b/tests/unit/async_/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/conftest.py b/tests/unit/async_/io/conftest.py index f69d34cef..05bbe8b94 100644 --- a/tests/unit/async_/io/conftest.py +++ b/tests/unit/async_/io/conftest.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test__common.py b/tests/unit/async_/io/test__common.py index add3db3ac..bc95738a3 100644 --- a/tests/unit/async_/io/test__common.py +++ b/tests/unit/async_/io/test__common.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt.py b/tests/unit/async_/io/test_class_bolt.py index ba552eef1..3bda07ea5 100644 --- a/tests/unit/async_/io/test_class_bolt.py +++ b/tests/unit/async_/io/test_class_bolt.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt3.py b/tests/unit/async_/io/test_class_bolt3.py index c4b643c91..8644aaded 100644 --- a/tests/unit/async_/io/test_class_bolt3.py +++ b/tests/unit/async_/io/test_class_bolt3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt4x0.py b/tests/unit/async_/io/test_class_bolt4x0.py index a45d6672f..7ba714e8a 100644 --- a/tests/unit/async_/io/test_class_bolt4x0.py +++ b/tests/unit/async_/io/test_class_bolt4x0.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt4x1.py b/tests/unit/async_/io/test_class_bolt4x1.py index af7876067..47cca348e 100644 --- a/tests/unit/async_/io/test_class_bolt4x1.py +++ b/tests/unit/async_/io/test_class_bolt4x1.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt4x2.py b/tests/unit/async_/io/test_class_bolt4x2.py index 5e40f5c7c..bb3921c8b 100644 --- a/tests/unit/async_/io/test_class_bolt4x2.py +++ b/tests/unit/async_/io/test_class_bolt4x2.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt4x3.py b/tests/unit/async_/io/test_class_bolt4x3.py index d35bc3b6b..fff16687e 100644 --- a/tests/unit/async_/io/test_class_bolt4x3.py +++ b/tests/unit/async_/io/test_class_bolt4x3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_class_bolt4x4.py b/tests/unit/async_/io/test_class_bolt4x4.py index c925918a5..5507fbc7f 100644 --- a/tests/unit/async_/io/test_class_bolt4x4.py +++ b/tests/unit/async_/io/test_class_bolt4x4.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_direct.py b/tests/unit/async_/io/test_direct.py index b3ee37b2e..f106eb6f4 100644 --- a/tests/unit/async_/io/test_direct.py +++ b/tests/unit/async_/io/test_direct.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/io/test_neo4j_pool.py b/tests/unit/async_/io/test_neo4j_pool.py index eeda874a8..c1c212844 100644 --- a/tests/unit/async_/io/test_neo4j_pool.py +++ b/tests/unit/async_/io/test_neo4j_pool.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/test_addressing.py b/tests/unit/async_/test_addressing.py index 55355c6dd..0c3fcfc54 100644 --- a/tests/unit/async_/test_addressing.py +++ b/tests/unit/async_/test_addressing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/test_driver.py b/tests/unit/async_/test_driver.py index 1a4a3457b..9d5b500a7 100644 --- a/tests/unit/async_/test_driver.py +++ b/tests/unit/async_/test_driver.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/work/__init__.py b/tests/unit/async_/work/__init__.py index ff095c81a..d5ea8d85c 100644 --- a/tests/unit/async_/work/__init__.py +++ b/tests/unit/async_/work/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/work/_fake_connection.py b/tests/unit/async_/work/_fake_connection.py index 399c9db41..9cc444044 100644 --- a/tests/unit/async_/work/_fake_connection.py +++ b/tests/unit/async_/work/_fake_connection.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/work/test_result.py b/tests/unit/async_/work/test_result.py index bc8524400..30ffe5832 100644 --- a/tests/unit/async_/work/test_result.py +++ b/tests/unit/async_/work/test_result.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/work/test_session.py b/tests/unit/async_/work/test_session.py index cdd09f220..3dcb03828 100644 --- a/tests/unit/async_/work/test_session.py +++ b/tests/unit/async_/work/test_session.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/async_/work/test_transaction.py b/tests/unit/async_/work/test_transaction.py index 38caebc24..86e968cf1 100644 --- a/tests/unit/async_/work/test_transaction.py +++ b/tests/unit/async_/work/test_transaction.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/__init__.py b/tests/unit/common/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/common/__init__.py +++ b/tests/unit/common/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/data/__init__.py b/tests/unit/common/data/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/common/data/__init__.py +++ b/tests/unit/common/data/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/data/test_packing.py b/tests/unit/common/data/test_packing.py index 89236d88d..8b274b587 100644 --- a/tests/unit/common/data/test_packing.py +++ b/tests/unit/common/data/test_packing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/io/__init__.py b/tests/unit/common/io/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/common/io/__init__.py +++ b/tests/unit/common/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/io/test_routing.py b/tests/unit/common/io/test_routing.py index 8f15ef151..030768c58 100644 --- a/tests/unit/common/io/test_routing.py +++ b/tests/unit/common/io/test_routing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/spatial/__init__.py b/tests/unit/common/spatial/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/common/spatial/__init__.py +++ b/tests/unit/common/spatial/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/spatial/test_cartesian_point.py b/tests/unit/common/spatial/test_cartesian_point.py index 41be848f6..742aa7b61 100644 --- a/tests/unit/common/spatial/test_cartesian_point.py +++ b/tests/unit/common/spatial/test_cartesian_point.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/spatial/test_point.py b/tests/unit/common/spatial/test_point.py index b8217c336..fd7f35e98 100644 --- a/tests/unit/common/spatial/test_point.py +++ b/tests/unit/common/spatial/test_point.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/spatial/test_wgs84_point.py b/tests/unit/common/spatial/test_wgs84_point.py index d3c4ee102..43f4f251f 100644 --- a/tests/unit/common/spatial/test_wgs84_point.py +++ b/tests/unit/common/spatial/test_wgs84_point.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_addressing.py b/tests/unit/common/test_addressing.py index ce8774515..eafe7f17f 100644 --- a/tests/unit/common/test_addressing.py +++ b/tests/unit/common/test_addressing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_api.py b/tests/unit/common/test_api.py index d1b297773..f0920d953 100644 --- a/tests/unit/common/test_api.py +++ b/tests/unit/common/test_api.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_conf.py b/tests/unit/common/test_conf.py index 322c8f736..3bd919e53 100644 --- a/tests/unit/common/test_conf.py +++ b/tests/unit/common/test_conf.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_data.py b/tests/unit/common/test_data.py index bac7d7021..59641aef6 100644 --- a/tests/unit/common/test_data.py +++ b/tests/unit/common/test_data.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_exceptions.py b/tests/unit/common/test_exceptions.py index a1e113c56..26e0f6151 100644 --- a/tests/unit/common/test_exceptions.py +++ b/tests/unit/common/test_exceptions.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_import_neo4j.py b/tests/unit/common/test_import_neo4j.py index 1ac8abe75..01bfd5905 100644 --- a/tests/unit/common/test_import_neo4j.py +++ b/tests/unit/common/test_import_neo4j.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_record.py b/tests/unit/common/test_record.py index b893ff62d..8999af832 100644 --- a/tests/unit/common/test_record.py +++ b/tests/unit/common/test_record.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_security.py b/tests/unit/common/test_security.py index 049294d27..e4e804915 100644 --- a/tests/unit/common/test_security.py +++ b/tests/unit/common/test_security.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/test_types.py b/tests/unit/common/test_types.py index 613399469..8657288c9 100644 --- a/tests/unit/common/test_types.py +++ b/tests/unit/common/test_types.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/__init__.py b/tests/unit/common/time/__init__.py index 72f911255..4b38f637c 100644 --- a/tests/unit/common/time/__init__.py +++ b/tests/unit/common/time/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_clock.py b/tests/unit/common/time/test_clock.py index c628d3d50..74b199d32 100644 --- a/tests/unit/common/time/test_clock.py +++ b/tests/unit/common/time/test_clock.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_clocktime.py b/tests/unit/common/time/test_clocktime.py index 50d6d26b0..6c1c7842b 100644 --- a/tests/unit/common/time/test_clocktime.py +++ b/tests/unit/common/time/test_clocktime.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_date.py b/tests/unit/common/time/test_date.py index 89edac6d3..4b8e4e761 100644 --- a/tests/unit/common/time/test_date.py +++ b/tests/unit/common/time/test_date.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_datetime.py b/tests/unit/common/time/test_datetime.py index bc01cffb6..9151a7907 100644 --- a/tests/unit/common/time/test_datetime.py +++ b/tests/unit/common/time/test_datetime.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_dehydration.py b/tests/unit/common/time/test_dehydration.py index 099a461cc..7ba2b21f7 100644 --- a/tests/unit/common/time/test_dehydration.py +++ b/tests/unit/common/time/test_dehydration.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_duration.py b/tests/unit/common/time/test_duration.py index c7458ec54..f31d30957 100644 --- a/tests/unit/common/time/test_duration.py +++ b/tests/unit/common/time/test_duration.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_hydration.py b/tests/unit/common/time/test_hydration.py index 1a931f1a8..5f6c74a3e 100644 --- a/tests/unit/common/time/test_hydration.py +++ b/tests/unit/common/time/test_hydration.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/common/time/test_time.py b/tests/unit/common/time/test_time.py index f73e4f27a..126112482 100644 --- a/tests/unit/common/time/test_time.py +++ b/tests/unit/common/time/test_time.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/mixed/__init__.py b/tests/unit/mixed/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/mixed/__init__.py +++ b/tests/unit/mixed/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/mixed/async_compat/__init__.py b/tests/unit/mixed/async_compat/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/mixed/async_compat/__init__.py +++ b/tests/unit/mixed/async_compat/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/mixed/async_compat/test_concurrency.py b/tests/unit/mixed/async_compat/test_concurrency.py index 9af4b4f8e..9b648af9c 100644 --- a/tests/unit/mixed/async_compat/test_concurrency.py +++ b/tests/unit/mixed/async_compat/test_concurrency.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/mixed/io/__init__.py b/tests/unit/mixed/io/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/mixed/io/__init__.py +++ b/tests/unit/mixed/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/mixed/io/test_direct.py b/tests/unit/mixed/io/test_direct.py index f758e61fd..4cbe32396 100644 --- a/tests/unit/mixed/io/test_direct.py +++ b/tests/unit/mixed/io/test_direct.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/__init__.py b/tests/unit/sync/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/sync/__init__.py +++ b/tests/unit/sync/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/__init__.py b/tests/unit/sync/io/__init__.py index 487bee0b2..c42cc6fb6 100644 --- a/tests/unit/sync/io/__init__.py +++ b/tests/unit/sync/io/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/conftest.py b/tests/unit/sync/io/conftest.py index dc5c7504b..795aa7ae0 100644 --- a/tests/unit/sync/io/conftest.py +++ b/tests/unit/sync/io/conftest.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test__common.py b/tests/unit/sync/io/test__common.py index 71e3b7aa6..27dad7cb9 100644 --- a/tests/unit/sync/io/test__common.py +++ b/tests/unit/sync/io/test__common.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt.py b/tests/unit/sync/io/test_class_bolt.py index d3e63ef6f..03377cf3d 100644 --- a/tests/unit/sync/io/test_class_bolt.py +++ b/tests/unit/sync/io/test_class_bolt.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt3.py b/tests/unit/sync/io/test_class_bolt3.py index 3642c9096..bfa63f4fd 100644 --- a/tests/unit/sync/io/test_class_bolt3.py +++ b/tests/unit/sync/io/test_class_bolt3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt4x0.py b/tests/unit/sync/io/test_class_bolt4x0.py index e4017eaf2..e1c0a5ccd 100644 --- a/tests/unit/sync/io/test_class_bolt4x0.py +++ b/tests/unit/sync/io/test_class_bolt4x0.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt4x1.py b/tests/unit/sync/io/test_class_bolt4x1.py index 66d403166..9a32fa8e3 100644 --- a/tests/unit/sync/io/test_class_bolt4x1.py +++ b/tests/unit/sync/io/test_class_bolt4x1.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt4x2.py b/tests/unit/sync/io/test_class_bolt4x2.py index df6590817..145bc0850 100644 --- a/tests/unit/sync/io/test_class_bolt4x2.py +++ b/tests/unit/sync/io/test_class_bolt4x2.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt4x3.py b/tests/unit/sync/io/test_class_bolt4x3.py index e275ed675..fbde3872e 100644 --- a/tests/unit/sync/io/test_class_bolt4x3.py +++ b/tests/unit/sync/io/test_class_bolt4x3.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_class_bolt4x4.py b/tests/unit/sync/io/test_class_bolt4x4.py index 618a30e2a..665731727 100644 --- a/tests/unit/sync/io/test_class_bolt4x4.py +++ b/tests/unit/sync/io/test_class_bolt4x4.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_direct.py b/tests/unit/sync/io/test_direct.py index bdfc76036..72acfc5b7 100644 --- a/tests/unit/sync/io/test_direct.py +++ b/tests/unit/sync/io/test_direct.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/io/test_neo4j_pool.py b/tests/unit/sync/io/test_neo4j_pool.py index 2ce2bdb66..a94b5fd53 100644 --- a/tests/unit/sync/io/test_neo4j_pool.py +++ b/tests/unit/sync/io/test_neo4j_pool.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/test_addressing.py b/tests/unit/sync/test_addressing.py index a8860132c..2779eb8bf 100644 --- a/tests/unit/sync/test_addressing.py +++ b/tests/unit/sync/test_addressing.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/test_driver.py b/tests/unit/sync/test_driver.py index 26f0d85db..918d36f9e 100644 --- a/tests/unit/sync/test_driver.py +++ b/tests/unit/sync/test_driver.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/work/__init__.py b/tests/unit/sync/work/__init__.py index 2a9c5e115..27923502c 100644 --- a/tests/unit/sync/work/__init__.py +++ b/tests/unit/sync/work/__init__.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/work/_fake_connection.py b/tests/unit/sync/work/_fake_connection.py index c030b9df3..0d64b8157 100644 --- a/tests/unit/sync/work/_fake_connection.py +++ b/tests/unit/sync/work/_fake_connection.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/work/test_result.py b/tests/unit/sync/work/test_result.py index 07ba5b1c8..4edeec99e 100644 --- a/tests/unit/sync/work/test_result.py +++ b/tests/unit/sync/work/test_result.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/work/test_session.py b/tests/unit/sync/work/test_session.py index 1b4d60978..92edd9aab 100644 --- a/tests/unit/sync/work/test_session.py +++ b/tests/unit/sync/work/test_session.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # diff --git a/tests/unit/sync/work/test_transaction.py b/tests/unit/sync/work/test_transaction.py index 0e8821736..3c5dfcbee 100644 --- a/tests/unit/sync/work/test_transaction.py +++ b/tests/unit/sync/work/test_transaction.py @@ -1,5 +1,5 @@ # Copyright (c) "Neo4j" -# Neo4j Sweden AB [http://neo4j.com] +# Neo4j Sweden AB [https://neo4j.com] # # This file is part of Neo4j. # From 633891921f7f52f1d1e1b201be7224e5d09076eb Mon Sep 17 00:00:00 2001 From: Rouven Bauer Date: Thu, 5 May 2022 17:17:57 +0200 Subject: [PATCH 3/3] Replace pytz docs link with PyPi - allows for https - contains docs and links to mirrors + more --- docs/source/types/_temporal_overview.rst | 4 ++-- neo4j/time/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/types/_temporal_overview.rst b/docs/source/types/_temporal_overview.rst index 00953799b..d6f18b8f0 100644 --- a/docs/source/types/_temporal_overview.rst +++ b/docs/source/types/_temporal_overview.rst @@ -1,7 +1,7 @@ Temporal data types are implemented by the ``neo4j.time`` module. It provides a set of types compliant with ISO-8601 and Cypher, which are similar to those found in the built-in ``datetime`` module. -Sub-second values are measured to nanosecond precision and the types are compatible with `pytz `_. +Sub-second values are measured to nanosecond precision and the types are compatible with `pytz `_. The table below shows the general mappings between Cypher and the temporal types provided by the driver. @@ -19,7 +19,7 @@ Duration :class:`neo4j.time.Duration` :class:`python:datetime.timedelta` ============= ============================ ================================== ============ Sub-second values are measured to nanosecond precision and the types are mostly -compatible with `pytz `_. Some timezones +compatible with `pytz `_. Some timezones (e.g., ``pytz.utc``) work exclusively with the built-in ``datetime.datetime``. .. Note:: diff --git a/neo4j/time/__init__.py b/neo4j/time/__init__.py index 4e38ed1bb..b0302e316 100644 --- a/neo4j/time/__init__.py +++ b/neo4j/time/__init__.py @@ -1920,7 +1920,7 @@ class DateTime(metaclass=DateTimeType): draws functionality from those individual classes. A :class:`.DateTime` object is fully compatible with the Python time zone - library `pytz `_. Functions such as + library `pytz `_. Functions such as `normalize` and `localize` can be used in the same way as they are with the standard library classes.