]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
2025
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 2 Jan 2025 21:37:27 +0000 (16:37 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 2 Jan 2025 21:37:27 +0000 (16:37 -0500)
Change-Id: Ifb33b8df2f838851f329415fa70f494acb4ccde5

257 files changed:
LICENSE
doc/build/conf.py
doc/build/copyright.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/connectors/__init__.py
lib/sqlalchemy/connectors/aioodbc.py
lib/sqlalchemy/connectors/asyncio.py
lib/sqlalchemy/connectors/pyodbc.py
lib/sqlalchemy/dialects/__init__.py
lib/sqlalchemy/dialects/_typing.py
lib/sqlalchemy/dialects/mssql/__init__.py
lib/sqlalchemy/dialects/mssql/aioodbc.py
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mssql/information_schema.py
lib/sqlalchemy/dialects/mssql/json.py
lib/sqlalchemy/dialects/mssql/provision.py
lib/sqlalchemy/dialects/mssql/pymssql.py
lib/sqlalchemy/dialects/mssql/pyodbc.py
lib/sqlalchemy/dialects/mysql/__init__.py
lib/sqlalchemy/dialects/mysql/aiomysql.py
lib/sqlalchemy/dialects/mysql/asyncmy.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/mysql/cymysql.py
lib/sqlalchemy/dialects/mysql/dml.py
lib/sqlalchemy/dialects/mysql/enumerated.py
lib/sqlalchemy/dialects/mysql/expression.py
lib/sqlalchemy/dialects/mysql/json.py
lib/sqlalchemy/dialects/mysql/mariadb.py
lib/sqlalchemy/dialects/mysql/mariadbconnector.py
lib/sqlalchemy/dialects/mysql/mysqlconnector.py
lib/sqlalchemy/dialects/mysql/mysqldb.py
lib/sqlalchemy/dialects/mysql/provision.py
lib/sqlalchemy/dialects/mysql/pymysql.py
lib/sqlalchemy/dialects/mysql/pyodbc.py
lib/sqlalchemy/dialects/mysql/reflection.py
lib/sqlalchemy/dialects/mysql/reserved_words.py
lib/sqlalchemy/dialects/mysql/types.py
lib/sqlalchemy/dialects/oracle/__init__.py
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/dialects/oracle/cx_oracle.py
lib/sqlalchemy/dialects/oracle/dictionary.py
lib/sqlalchemy/dialects/oracle/oracledb.py
lib/sqlalchemy/dialects/oracle/provision.py
lib/sqlalchemy/dialects/oracle/types.py
lib/sqlalchemy/dialects/postgresql/__init__.py
lib/sqlalchemy/dialects/postgresql/_psycopg_common.py
lib/sqlalchemy/dialects/postgresql/array.py
lib/sqlalchemy/dialects/postgresql/asyncpg.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/dml.py
lib/sqlalchemy/dialects/postgresql/ext.py
lib/sqlalchemy/dialects/postgresql/hstore.py
lib/sqlalchemy/dialects/postgresql/json.py
lib/sqlalchemy/dialects/postgresql/named_types.py
lib/sqlalchemy/dialects/postgresql/operators.py
lib/sqlalchemy/dialects/postgresql/pg8000.py
lib/sqlalchemy/dialects/postgresql/pg_catalog.py
lib/sqlalchemy/dialects/postgresql/provision.py
lib/sqlalchemy/dialects/postgresql/psycopg.py
lib/sqlalchemy/dialects/postgresql/psycopg2.py
lib/sqlalchemy/dialects/postgresql/psycopg2cffi.py
lib/sqlalchemy/dialects/postgresql/ranges.py
lib/sqlalchemy/dialects/postgresql/types.py
lib/sqlalchemy/dialects/sqlite/__init__.py
lib/sqlalchemy/dialects/sqlite/aiosqlite.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/dialects/sqlite/dml.py
lib/sqlalchemy/dialects/sqlite/json.py
lib/sqlalchemy/dialects/sqlite/provision.py
lib/sqlalchemy/dialects/sqlite/pysqlcipher.py
lib/sqlalchemy/dialects/sqlite/pysqlite.py
lib/sqlalchemy/engine/__init__.py
lib/sqlalchemy/engine/_processors_cy.py
lib/sqlalchemy/engine/_row_cy.py
lib/sqlalchemy/engine/_util_cy.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/characteristics.py
lib/sqlalchemy/engine/create.py
lib/sqlalchemy/engine/cursor.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/events.py
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/engine/mock.py
lib/sqlalchemy/engine/processors.py
lib/sqlalchemy/engine/reflection.py
lib/sqlalchemy/engine/result.py
lib/sqlalchemy/engine/row.py
lib/sqlalchemy/engine/strategies.py
lib/sqlalchemy/engine/url.py
lib/sqlalchemy/engine/util.py
lib/sqlalchemy/event/__init__.py
lib/sqlalchemy/event/api.py
lib/sqlalchemy/event/attr.py
lib/sqlalchemy/event/base.py
lib/sqlalchemy/event/legacy.py
lib/sqlalchemy/event/registry.py
lib/sqlalchemy/events.py
lib/sqlalchemy/exc.py
lib/sqlalchemy/ext/__init__.py
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/ext/asyncio/__init__.py
lib/sqlalchemy/ext/asyncio/base.py
lib/sqlalchemy/ext/asyncio/engine.py
lib/sqlalchemy/ext/asyncio/exc.py
lib/sqlalchemy/ext/asyncio/result.py
lib/sqlalchemy/ext/asyncio/scoping.py
lib/sqlalchemy/ext/asyncio/session.py
lib/sqlalchemy/ext/automap.py
lib/sqlalchemy/ext/baked.py
lib/sqlalchemy/ext/compiler.py
lib/sqlalchemy/ext/declarative/__init__.py
lib/sqlalchemy/ext/declarative/extensions.py
lib/sqlalchemy/ext/horizontal_shard.py
lib/sqlalchemy/ext/hybrid.py
lib/sqlalchemy/ext/indexable.py
lib/sqlalchemy/ext/instrumentation.py
lib/sqlalchemy/ext/mutable.py
lib/sqlalchemy/ext/mypy/__init__.py
lib/sqlalchemy/ext/mypy/apply.py
lib/sqlalchemy/ext/mypy/decl_class.py
lib/sqlalchemy/ext/mypy/infer.py
lib/sqlalchemy/ext/mypy/names.py
lib/sqlalchemy/ext/mypy/plugin.py
lib/sqlalchemy/ext/mypy/util.py
lib/sqlalchemy/ext/orderinglist.py
lib/sqlalchemy/ext/serializer.py
lib/sqlalchemy/future/__init__.py
lib/sqlalchemy/future/engine.py
lib/sqlalchemy/inspection.py
lib/sqlalchemy/log.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/_orm_constructors.py
lib/sqlalchemy/orm/_typing.py
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/base.py
lib/sqlalchemy/orm/bulk_persistence.py
lib/sqlalchemy/orm/clsregistry.py
lib/sqlalchemy/orm/collections.py
lib/sqlalchemy/orm/context.py
lib/sqlalchemy/orm/decl_api.py
lib/sqlalchemy/orm/decl_base.py
lib/sqlalchemy/orm/dependency.py
lib/sqlalchemy/orm/descriptor_props.py
lib/sqlalchemy/orm/dynamic.py
lib/sqlalchemy/orm/evaluator.py
lib/sqlalchemy/orm/events.py
lib/sqlalchemy/orm/exc.py
lib/sqlalchemy/orm/identity.py
lib/sqlalchemy/orm/instrumentation.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/loading.py
lib/sqlalchemy/orm/mapped_collection.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/path_registry.py
lib/sqlalchemy/orm/persistence.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/relationships.py
lib/sqlalchemy/orm/scoping.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/orm/state_changes.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/strategy_options.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/orm/writeonly.py
lib/sqlalchemy/pool/__init__.py
lib/sqlalchemy/pool/base.py
lib/sqlalchemy/pool/events.py
lib/sqlalchemy/pool/impl.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/_dml_constructors.py
lib/sqlalchemy/sql/_elements_constructors.py
lib/sqlalchemy/sql/_orm_types.py
lib/sqlalchemy/sql/_selectable_constructors.py
lib/sqlalchemy/sql/_typing.py
lib/sqlalchemy/sql/_util_cy.py
lib/sqlalchemy/sql/annotation.py
lib/sqlalchemy/sql/base.py
lib/sqlalchemy/sql/cache_key.py
lib/sqlalchemy/sql/coercions.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/crud.py
lib/sqlalchemy/sql/ddl.py
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/dml.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/events.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
lib/sqlalchemy/sql/lambdas.py
lib/sqlalchemy/sql/naming.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/sql/roles.py
lib/sqlalchemy/sql/schema.py
lib/sqlalchemy/sql/selectable.py
lib/sqlalchemy/sql/sqltypes.py
lib/sqlalchemy/sql/traversals.py
lib/sqlalchemy/sql/type_api.py
lib/sqlalchemy/sql/util.py
lib/sqlalchemy/sql/visitors.py
lib/sqlalchemy/testing/__init__.py
lib/sqlalchemy/testing/assertions.py
lib/sqlalchemy/testing/assertsql.py
lib/sqlalchemy/testing/asyncio.py
lib/sqlalchemy/testing/config.py
lib/sqlalchemy/testing/engines.py
lib/sqlalchemy/testing/entities.py
lib/sqlalchemy/testing/exclusions.py
lib/sqlalchemy/testing/fixtures/__init__.py
lib/sqlalchemy/testing/fixtures/base.py
lib/sqlalchemy/testing/fixtures/mypy.py
lib/sqlalchemy/testing/fixtures/orm.py
lib/sqlalchemy/testing/fixtures/sql.py
lib/sqlalchemy/testing/pickleable.py
lib/sqlalchemy/testing/plugin/__init__.py
lib/sqlalchemy/testing/plugin/bootstrap.py
lib/sqlalchemy/testing/plugin/plugin_base.py
lib/sqlalchemy/testing/plugin/pytestplugin.py
lib/sqlalchemy/testing/profiling.py
lib/sqlalchemy/testing/provision.py
lib/sqlalchemy/testing/requirements.py
lib/sqlalchemy/testing/schema.py
lib/sqlalchemy/testing/suite/__init__.py
lib/sqlalchemy/testing/suite/test_cte.py
lib/sqlalchemy/testing/suite/test_ddl.py
lib/sqlalchemy/testing/suite/test_dialect.py
lib/sqlalchemy/testing/suite/test_insert.py
lib/sqlalchemy/testing/suite/test_reflection.py
lib/sqlalchemy/testing/suite/test_results.py
lib/sqlalchemy/testing/suite/test_rowcount.py
lib/sqlalchemy/testing/suite/test_select.py
lib/sqlalchemy/testing/suite/test_sequence.py
lib/sqlalchemy/testing/suite/test_types.py
lib/sqlalchemy/testing/suite/test_unicode_ddl.py
lib/sqlalchemy/testing/suite/test_update_delete.py
lib/sqlalchemy/testing/util.py
lib/sqlalchemy/testing/warnings.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util/__init__.py
lib/sqlalchemy/util/_collections.py
lib/sqlalchemy/util/_collections_cy.py
lib/sqlalchemy/util/_has_cython.py
lib/sqlalchemy/util/_immutabledict_cy.py
lib/sqlalchemy/util/compat.py
lib/sqlalchemy/util/concurrency.py
lib/sqlalchemy/util/cython.py
lib/sqlalchemy/util/deprecations.py
lib/sqlalchemy/util/langhelpers.py
lib/sqlalchemy/util/preloaded.py
lib/sqlalchemy/util/queue.py
lib/sqlalchemy/util/tool_support.py
lib/sqlalchemy/util/topological.py
lib/sqlalchemy/util/typing.py

diff --git a/LICENSE b/LICENSE
index 967cdc5dc10938fd9cbd6b122f860c20f1f0cba2..dfe1a4d815b4e81dcc25851f6f6d1770a311bf94 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2005-2024 SQLAlchemy authors and contributors <see AUTHORS file>.
+Copyright 2005-2025 SQLAlchemy authors and contributors <see AUTHORS file>.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of
 this software and associated documentation files (the "Software"), to deal in
index 5e89280be8b3c7e746b2564de3dc82dfb74a8d91..d667781e17e15d4b5e2035616861d14a7d2eef93 100644 (file)
@@ -233,7 +233,7 @@ master_doc = "contents"
 
 # General information about the project.
 project = "SQLAlchemy"
-copyright = "2007-2024, the SQLAlchemy authors and contributors"  # noqa
+copyright = "2007-2025, the SQLAlchemy authors and contributors"  # noqa
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
index b3a67ccf469767d9c2d82d9f5a368c13dd6cce40..54535474c42dd0835050297f81baf6b76a0efbba 100644 (file)
@@ -6,7 +6,7 @@ Appendix:  Copyright
 
 This is the MIT license: `<https://www.opensource.org/licenses/mit-license.php>`_
 
-Copyright (c) 2005-2024 Michael Bayer and contributors.
+Copyright (c) 2005-2025 Michael Bayer and contributors.
 SQLAlchemy is a trademark of Michael Bayer.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this
index c3ab0b6d5d3f149e0fca743eb4fec9d84d286f89..53c1dbb7d19410e85b526b05f19717bd9cd5a830 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f1cae0b3ceb068ee25351a0ad31f74b6622c2dcd..43cd1035c62c12820e296c95b83724586727d1aa 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2423bc5ec80a881ef046ff1532f5e1e45a3db881..57a16d720182ad9a85152a98db1273252e75e940 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/aioodbc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 27d438cda2741e1fe42357ba1fbc3ba3a8b85d2f..e57f7bfdf2186a1d1196d169aae81d2a37b8e9fc 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/asyncio.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d2df4b9ed047256b1f5b73263348aa894ebed7a2..3a32d19c8bbc1b23f3e555ee3b8b6d5c0d0d521c 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7d5cc1c9c2f06f82ebc70b54887b0dab31127b1b..31ce6d64b52ec293eb431bfb66d9d566f1a8c894 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8e04f3b3764840f7ad1f5a8e946177e3ea0d2642..4dd40d7220fc9007be2df59cce92a0897f355771 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/_typing.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 19ab7c422c95cc9c92ae66e115416a649ffbe03a..20140fdddb38a4e1e1a814dbddb0f1008fcb1d8d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 518d7ce066975e647a24d9af556c224871bb79e0..522ad1d6b0d0758dc8e49ccc4e9609460c8bbad2 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/aioodbc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7f3cf5a5165a7ceac630d29876e06a2553c3d9f5..a2b9d37dadd0ec7f98caf59c112b5b161c73fa50 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0c5f2372de8a19310df00161f84e5e7c47106a32..b60bb158b4631ee4ba64e5e9c71277eceb93d765 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/information_schema.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 305aef77d104a1f63bf84768e96d8abd193f966c..a2d3ce81469a803d5cd16548969fb7c522c1d8f9 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/json.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1c684b1dfefa86ee49ec433e4efa815f8bfd19a2..10165856e1aac02dff49ce7628637d5d5a2be98a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c4207987bcd135aeccac3f5291921e87ef8eefae..301a98eb4172f0db61f781230a1281d9a3af3975 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/pymssql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 421472c255287a1fa665ffe592866a505ab26745..cbf0adbfe08b3ff44702089bcd7d4eb944d3bb83 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/pyodbc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 05f41cf351234f261b0ac8d15d1c3fd638169791..9174c54413a00922e07ddd41e9084b28672b9612 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f66fae027942816ff3ff012326b401ae3aedfc83..66dd91110432f31ddf22e9a21e49464f481e97d7 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/aiomysql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 49a9a79ba81f2d85072826e9e97e5ab16241bd15..86c78d65d5b2c6948cb2c118ac5f03b9b1b6ad98 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/asyncmy.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 25d293d533c20aae09a98b79e8a5ed3ce212d2d4..71a4a4b6666b30797ef77179ff68611db2a1f4f6 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f199aa4e895a172c125b35445a809da386b7026b..5c00ada9f9400a42e220be0ad96c8bb3623615fa 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/cymysql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 731d1943aa8a6b49faa506390f04848587c81c87..cceb0818f9b1fb308e52dee3ea9b53bd50815fba 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/dml.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d3c10c0021b7afaafd7667928bd53fc95246b004..6745cae55e7594ceb37d30d2c53028b5d32a8ac4 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/enumerated.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8c21c748c96d0f209e9d62f669108ce1b8cd3e40..b60a0888517fd3aab0a75a9bd5ba3f03c386af4f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/expression.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ebe4a34d2123eb4b4dd0c0c8e2c5e3cc0a880e01..8912af36631f93470d7882493cd2b85d59c148f8 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/json.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ea2586de3fe1b2e3ae4d04f2231c6c09cf8b6b1d..ff5214798f2a0704a9904d10cd897effa8d44557 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mariadb.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 361cf6ec4083ccadb2a29a8051dcf0947a736b95..fbc60037971de8df2255529de2e47be3eb5e947c 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mariadbconnector.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index edc63fe38657c023c379135448254d54a102cd8c..a3ae490b5ea79e5e14cc91cfd909c01f03b2d525 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mysqlconnector.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6e7ccaa1525f9096de9dad55f40ab780143db9e6..3cf56c1fd0942122193202550ffe8167b308630f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mysqldb.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 836ffa1df43133c99d693b673d8b249d6166fd15..7807af40975b2a9d836b5568b59c8cbfadcf3f7c 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ff62e4f0282b20ca54318522a9d772f1188ed9e9..67cb4cdd766c40661d89d4532a23c17c7126bf3d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/pymysql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9ad360bd99511418931daa0626ba946022f08157..6d44bd3837067715424398a5ebcbf7bcb0d55569 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/pyodbc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d7622c5463d89c84cb7a2b30550d9383f4732e83..3998be977d9ab5b89ca9ad30db5d1886ca244f73 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/reflection.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 04764c17e77d8f2a60f0a8c538d2997ae0eb3182..34fecf42724bdbe796425aed50db7aec2e2ba635 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/reserved_words.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd848c5efc1691699ee78f7061d6984156e3700e..d89d3776ea2056b129f60d4c6a47c33aaf70ee34 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/types.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d855122ee0c7920a8683863d59244c501f02886b..7ceb743d616ec31b95e0012fe1ffb53dda801e1a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 350c091c94a7e56cb7ee3220264a52bab33a3cf4..ebd13d21a7a16683163e5bdc5f4f917d0764817b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c7c5b4996e39d68d61dbbe79f5485550ccef87e..a0ebea44028978ee7327da721b968c53062b004e 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/cx_oracle.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 63479b9fcc61546d6cfa2f32fc2adc836497163b..f785a66ef71e25aef7227cf755a2389d0ab3bf59 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/dictionary.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d85849ad9d0295b18672427a2b2bca1dc224a469..8105608837f752274ae22de030f9032856af9e61 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/oracledb.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0eb6273a8c6ae76219ff135f4d4002c0ad1bb24b..3587de9d011db55cc0eb13dcdfaab25ad7c87494 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9318b45619a287ba2b8b68d8cbfd8ab099355906..06aeaace2f5fc7dba4f14cbab4d13822064f7701 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/types.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 325ea8869905175e8e5423230dc50690febab0b6..88935e2024559f6e1bcffb8f6735f33736e2d82e 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 16d569b59bd796afc08dd15f56718cfe1b259799..e5b39e500406d2f4555861e35325b13e064feefe 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/_psycopg_common.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fcb98e6518325b0c8927d702d62ef1374329ab86..7708769cb5380dde321e1f8948d2da48d2aeff09 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/array.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a4909b74ea50d208a669fd5bd7b32b683328d25e..ecb09560fc476d4516245a94384b200d20544a86 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/asyncpg.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index b917cfcde7cf3935f1c657f0d269e0fff018df4e..83bd99d7f0a0ad04fa786e16a848738cb072855a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1615506c0b2c8db4646e87908423ee25ec3b427d..1187b6bf5f03a71b92c5b7cbe870b691aff5ca46 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/dml.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a760773e247323a3d86ee624d4b137e0f3217c0b..94466ae0a1396e3e6f93a7d0c86cc4a59442481f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/ext.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 291af36c69b5b4edc709d469984cccac60bd1f02..0a915b17dfffc809861c4817121a1ed06374dc07 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/hstore.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4e7c15ffe92ab456ada1e38efcf4807a5dc3324c..2f26b39e31e5aa6ae92bfdcc830a98839eec773f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/json.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 320de440f861c0bd006135643c43d0532e87de80..e1b8e84ce858807e7377b4be7a5a9244c270b747 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/named_types.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 53e175f9c54533e1db3dd402785519675e99f213..ebcafcba991ecc41c14ca1718641db9a9f7fa90e 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/operators.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a8f8a78637e3e5d3a6485025f316aa980c29910c..e36709433c7439d3aa13ab458fcbb664ce94e8fc 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/pg8000.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 9b5562c13fcaf777633d5b79bfab410da261b8e5..78f390a2118a77e6805822fc8dddf9eb19ca111c 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/pg_catalog.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 38573c77ad60f0ffe1328b9d90aefcd2bab8db62..c76f5f518499a98bcece9a0f0087181598220865 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 52116bbc0aa8d3d022fb5867a8b680756e203d95..4df6f8a4fa26f8c9b778b832611f693c38144853 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d7efc2eb9744af4cf6a4c8df503b56ad2b451e2e..eeb7604f796da1037f4acff17cc33314b9c2b111 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg2.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3cc3b69fb3408675bbb846007941eb49d727829f..55e17607044c73551e05c9455d9b35e8093ff318 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg2cffi.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fa0c0c5df81a979e77938361fed8b65614b02b38..93253570c1bad57c1d93cd8f21f8606421ddee45 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/ranges.py
-# Copyright (C) 2013-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 73f9d372ab23004d45c6d8129f153591fa839bcc..6fe4f576ebd84e7f4aa768e4b07c32dfc2e9c2d1 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/types.py
-# Copyright (C) 2013-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 45f088e2147508c7dbcb2092c0bc5355228e983d..7b381fa6f52021bc2fc24524de1364ee3dc09835 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 208a72833bae6d0406d65741c88dc4624fc9ed06..60a49db38c391f595ccc5c004490ed20d5b23c07 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/aiosqlite.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 51b957cf9ac584caae018e14aa40e47ef4cf677c..e0c0f6e80986da5395837599a248170b9bc6c946 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 163a6ed28b27aaf12551edcf700d33371d4d818c..84cdb8bec234b3e981255db0582fd4a9c49bdf7c 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/dml.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ec2980297e206cae2e6c53864ed978e6fa1be496..02f4ea4c90f14bc5f6b56b8e3b544ce16c1bd7ba 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/json.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f18568b0b33dff3aef3de55df018ed81334b57e6..97f882e7f2807c25f51f05d2f085e168484814ef 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 58471ac90ecc792db113419b8459bbbfc0d90be2..7a3dc1bae13f665dbea255d01b5ccf6cbf240cfa 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/pysqlcipher.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0c854630089562ba3f563f4b4bdda8639e1cd904..73a74eb71089ffb41f7099403fdf2f3474cbbbce 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/pysqlite.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index af0f7ee8becd86831e44f7bcae0792501c9bc03f..f4205d892600bde3f96321ae03084f166a26ca2d 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7909fd3668248965847b43ccadbc134bbdd78f76..16a44841accd05262cd7f3c6348ad617117e6021 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_processors_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 903bc5b93e917feb526f245057e912a580b4f7a2..4319e05f0bb563437a1832dc21815b05260dd590 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_row_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1eaf38f07dde7e378b3f4fe08e71a06cbeeab689..218fcd2b7b809f561b9241a51a1f18b0bbbe7e46 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_util_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 72b455d45a38d73853d9e2e56f8d1d36436c6b59..fbbbb2cff01aaed98a01dba84db3516e2b9127ff 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 97b17fbdfb64e3760fedfa474082496294e01d73..322c28b5aa714a80e3821aa67effa0e5ed44cd2b 100644 (file)
@@ -1,5 +1,5 @@
 # engine/characteristics.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dae72dfbdeff8d8cc39c5785acb8e21406aa71af..88690785d7bdfd5e555d3dd50fd658a7c57f0bce 100644 (file)
@@ -1,5 +1,5 @@
 # engine/create.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 427f8aede21fc9f4945a653aa0700d71f71378e4..56d7ee758855fdda5d1f70ee854885fe27e29b91 100644 (file)
@@ -1,5 +1,5 @@
 # engine/cursor.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d8fc7cda82b4e2827f44906efe72b344ac340559..ba59ac297bca9ddb47e3f92d430b6270eb54fc00 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7b31138c52750e2d93939c8e804b0521ce528922..dbaac3789e6f167395639c9158c3f44a1fe7d5b0 100644 (file)
@@ -1,5 +1,5 @@
 # engine/events.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e96881822ee996b61539d4c8dae2019bc1e4b570..35c52ae3b942df1a030ee9eb551ca3d625a322dc 100644 (file)
@@ -1,5 +1,5 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fc59521cd2622b2684f8f7127b247ad3837e58ea..08dba5a6456de92677e477f66c063dde94995a2b 100644 (file)
@@ -1,5 +1,5 @@
 # engine/mock.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 47f07e006c763097d6ff04c095afe4e258524fa0..32f0de4c6b849d87c2ccad569cb167e5c87f5737 100644 (file)
@@ -1,5 +1,5 @@
 # engine/processors.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index a4364e1d550a5da8c7ab853fc75a5b2051fc9e34..e284cb4009d1dc9aefc4d3f6edf932d6d7ad309c 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e495a2619da07be6fe29b8aa68b116529d7960a9..dfe7a617888b82a154951a9629932472cae2739a 100644 (file)
@@ -1,5 +1,5 @@
 # engine/result.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dda2ecc7be95b1d35548c7f0f3c4701088b80e71..6c5db5b49d86fbdd41b78479422a661e0d2e5c7b 100644 (file)
@@ -1,5 +1,5 @@
 # engine/row.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 30c331e8d448fb4f3796b7683ab833fe20ebc798..5dd7bca9a49e9a8d77766633b79bbeb97917abea 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7eb08df61a24958d40846a2b34af518e992e0949..f72940d4bd30313b9595451eed98bbbef833cc36 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 284973b455ca8b294a4ef19522659c395257c5d4..b8eae80cbc714b91d8e95814142a9a510990395d 100644 (file)
@@ -1,5 +1,5 @@
 # engine/util.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9b54f07fc42f193bb8a20c5a7fcd482585092853..309b7bd33fbad36b81c6437b91855dfe48a0cdef 100644 (file)
@@ -1,5 +1,5 @@
 # event/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f528d74f69fc8114228479a284979a8dea796021..b6ec8f6d32bef28850b904c149b2cc795e3ea9a9 100644 (file)
@@ -1,5 +1,5 @@
 # event/api.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3af9fa52b88afbada54dd37a08769e54a2b64221..7e28a00cb92f4f0f5611492c316bff6f8fa23128 100644 (file)
@@ -1,5 +1,5 @@
 # event/attr.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cddfc982a6c675e536d9db2d0f097a48966a0071..a73e86bd2a205155bef4a91cbb3ec2625ab390b7 100644 (file)
@@ -1,5 +1,5 @@
 # event/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 57e561c390d6893aa2cf74fe294023a9ea2517d9..e60fd9a5e17f5de1b998f8cfdc9e1a45272054ca 100644 (file)
@@ -1,5 +1,5 @@
 # event/legacy.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 773620f8bbc518b8c0c3e1fee614f1bb5d1cbab5..77fea0006f4f7e470a0f8c9c83105f0cb1d81b58 100644 (file)
@@ -1,5 +1,5 @@
 # event/registry.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8c3bf01cf6a92a3a23d92c869d4dc332ce713957..ce83243951677161da246674b318b5af7820d483 100644 (file)
@@ -1,5 +1,5 @@
 # events.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ced87df4b2d28b2b8192820f953051b146268272..71e5dd81e0bb1bb2ef74a027fe99a44db6d9f96c 100644 (file)
@@ -1,5 +1,5 @@
 # exc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f03ed945f358d4f78ad2fe1cb527d74a4dec40d8..2751bcf938a6e75da0fa9947c331d6fececc42e6 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 52ba46b4d7a49911697e9cc11292a52792849608..c5d85860f201b46790d5dc0d6741ae4d53b6d610 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0adc64d81eaa483758af7bf85b7a7d1a41fc6732..b3452c80887256081de685f1a6e1627bb4a55c17 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/__init__.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e534424c0f48865d31d04821386c1ba180b146f6..b53d53b1a4ea549313e3a114875661dca479abc8 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/base.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 68de8112d03a967a30b2bc78f9e3b4985bc26420..f8c063a2f4f0665660e82c1d6dc2b26cfc796d76 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/engine.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1cf6f3638605127360ad34176647e5ceb177e914..558187c0b417140abd9b07dbfa5eb96c0fe10ef1 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/exc.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 59cd846eaee0e5607124461b78616e57fdb34199..7b0b23ee44b33de39d23d81577a509b7328a6cc6 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/result.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 952e7e3f8cee5791397f453a5b4a571b95870baa..027e6947dbf104ac406118983b2c3c496d4debed 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/scoping.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 022de0d8d03875afe29c85de056a314415e3b9c0..65e3b541a7fd42d781f866f1e541893253e9d622 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/session.py
-# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74b36b62e1149882d7e1ee420439a2e1a4128271..169bebfbf3fc82a5c6a8796f233fbb7ba626926e 100644 (file)
@@ -1,5 +1,5 @@
 # ext/automap.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c9dd63a87f8c2496d528b8e641933c47d995a107..cd3e087931e843b4fb822a2741f72bade0bc823a 100644 (file)
@@ -1,5 +1,5 @@
 # ext/baked.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 199329d5b45bd0c22a0db9d658f11d8262c0410b..cc64477ed47633f6a1d9655512e187e18147315e 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 37da40377b6b9c706bab56b5f6aef5784f0a7c90..0383f9d34f8b77d392270d5db4d4f3f476d7cd12 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4be4262d0df1d890f2e06f5cd0812bd21c50539c..3dc6bf698c4a7357ccb057574c6afc9742a0948d 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/extensions.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b8795853a626e6e9d5c034f3bcf7464debff1d10..7ada621226cd96448b9f0c70ffc8da4ff2a99179 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dd39b7777eca9b0043fd67eeea08589eb90e1b57..6a22fb614d297c6ec81c4d14293c50e8b9d3d3cb 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e79f613f27488b68336a6bcb648f1fb4dea2c83d..886069ce000b528aa7bb69fce72f177c42893c49 100644 (file)
@@ -1,5 +1,5 @@
 # ext/indexable.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0e58cda384e336094ca88162c291e9e8ba0d42d8..a5d991fef6fe62f2d07891e41b446205ddb38cb0 100644 (file)
@@ -1,5 +1,5 @@
 # ext/instrumentation.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 398351dacdd717d94e08a8815e4580cb956014ae..9ead5959be0124a6f804b420483a10a9cf0f99cc 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index de2c02ee9f13152e59419d6be089c2cf13d0c16b..b5827cb8d369364b05c1711b7396001688ba6618 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 84eb9772491a02cf694ca1245e0be53847d555f0..02908cc14b4362f506b7a2ab062b66ffe13461c3 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/apply.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3d578b346e978a15842469cd67382085fbe8929d..2ce7ad56ccc965c03a6d2f89de5de02d59a7ba04 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/decl_class.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8826672f72e74b71b1a299d8d62b7aaea3111ca3..26a83cca8363a4c227167a78e3711401e6133978 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/infer.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fc3d708e7ddbf71e3863f30028fa64752f46d819..319786288fdb43ed7b70bfa48be84b18a6013556 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/names.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 00eb4d1cc03ad305f7b507b59758c8d1f1fb5e70..1ec2c02b9cf3ea2d2ba3652056196ddba5bc48d9 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/plugin.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index af0882bc3075006f1f9fdf9964a938b3ec4fde8e..16761b9ab395c1b8d07307f4f06779f0f3e2a7ad 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/util.py
-# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ae904b0fc6c7e08edb03ae667d2f0eef91555360..3cc67b189649eae8a98454f8f894717dd967e9f6 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9cbc61a1c36d58c88da679fd6707b372201adb90..b7032b6595955851f655cb95da095289b03a6119 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8ce36ccbc24505a6e4dae921b732f961f2da1f52..ef9afb1a52bade15a1bd800dd7b359cfca5fbe09 100644 (file)
@@ -1,5 +1,5 @@
 # future/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b55cda08d94af375e1b558e1abb7c7d91265e3e2..0449c3d9f31c448c6efd4d19de3bc26d3d98a76d 100644 (file)
@@ -1,5 +1,5 @@
 # future/engine.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1622a54dfa5679aeca3d3b348b5dfe6367812db2..71911671660f9a3eb8908ad8730e933c2e46f909 100644 (file)
@@ -1,5 +1,5 @@
 # inspection.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e6bfbadfed16381cf1f44ded955a882ebc144574..b9627d879c0cabc8da7bfdc5aebcc0310af13949 100644 (file)
@@ -1,5 +1,5 @@
 # log.py
-# Copyright (C) 2006-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2006-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
index 70a1129431435e921dc68c3aaaf95568c84c89a5..7771de47eb2dd9df0dc766f70c69e8fa38a77af5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3ee2009cc12d2514fe716b39c8988ef4808afd6e..9e42a834fa3e297f883a5109b60f94b45865478c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/_orm_constructors.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 914515203a73af8a2ac9ee4ba4f0c82534100767..8cf5335d67dad18af6daef5d4f60f0727681a7c3 100644 (file)
@@ -1,5 +1,5 @@
 # orm/_typing.py
-# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d65597238bff6b4b96e8558470de12fc01e8749b..85ef9746fda0e581ce567deed2a1158ebe48c4dc 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b5f7dbbafb05650dc681557fa3f4c9a47d7716b0..c84f3b1b3f83d93044acc06a1cf61a005f58222f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5acc42ef54d7a79993f6a8191e1a4a2574d1ebd7..ce2efcebce7bbd84b62b39978c81b32b6e4564b7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/bulk_persistence.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bab45480cb142caed9cb86ddfa1823e40d0df9f9..9dd2ab954a2387652ec854d0262187568f3ac62a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/clsregistry.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c7c1e927e09379a8e20322c6b06789c0e5297389..c765f59d3cf21e857ecb49171f79e6fef3a88eb5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cdbb6ccec3d27a45cba29415cbc1db20c3f592d4..d86f1d0ce578bc672728ee3b1ab6b106e7172598 100644 (file)
@@ -1,5 +1,5 @@
 # orm/context.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2dde41d7006de0d5ff3e594462d599037de25b65..a9dc3bb7bfeed2175d5b0473a7f09c07f01a0768 100644 (file)
@@ -1,5 +1,5 @@
 # orm/decl_api.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c7850971ab1cba98cfbc010c2bcb24da8236382..a2291d2d755b0c2be46efbe6b91019000694b5ae 100644 (file)
@@ -1,5 +1,5 @@
 # orm/decl_base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9cd1d786cbc2d06500f6ca84ab102e93153ab908..88413485c4cf2956b0bbb75a9225148f1d3bccb4 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c111ab34dcb73a4251eb9ac3804fe78e8567697b..89124c4e439a827c5350ec346c10dbb39ff5db45 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74997c0b5c1fc03dce7bd97bff1af297c68d81d9..6961170ff63eb6ce9b8dfeb9a0736469bae642d4 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2c10ec55afa5dbfcd7602cce8c755d009f928837..57aae5a3c49ec853d4434a8ea3e1296ebca8795d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 132d28e97b40cc0cc2353f2eb1d14515552eb50e..63e7ff2046405b2698a52208844db75dcab689b0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 39dd540112846c72336af6d19a389a75fd98afd5..0494edf983a35f779fb1f3b9dda256c1385c4b2d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d7c97c6b9e543f154aac9e53dbd21c1356a5fe40..fe1164d57c0a85adffa17e0d88af34471c9173cf 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5f50031cac4250c77d315051a5ed243d665417b9..95f25b573bf09354d8274a4a61ac76182a51a376 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 22290450f2f460481cd33f8b9e16fb291e5bfb83..26c294294969cf2e90bb4cde43c2e0b469113dad 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8fcc89e7359bb2ee834feda8a85fb6a8d1caa737..b5f51fee531b28b9b16d324aff6d9b93bd3b4a30 100644 (file)
@@ -1,5 +1,5 @@
 # orm/loading.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0d3079fb5ab9d0b8f25ee41b75e475a9b1e451c1..ca085c4037675e445b30725c2192c5c49cc29b13 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapped_collection.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index deac38a39b26fcdf293c060cfce3b2b2556362f3..d879b6dbdafc0057323069f90c008077b41bfe11 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2fc632aaea430257455efab45f287d6fc8a728e9..a405244ba75f5df8ac8759eb0c31f900c57a876a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 464a0bcdc22f06fe1d94a13d0b973612fc0897ec..d2f2b2b8f0afbff4c34af61ef93fe9d3af2fefc7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/persistence.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2b15e7f2a1dc6c9f95aeddbcef95113a88d36eec..2ffa53fb8ef857ad0d2c994623d944bef084a924 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 257b79213280fb1f1b355cf4c6df589637ba538a..02a98fefe7c9cfb5df12c95ead2562494bc22996 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 02be1d3432a6f874b8dc004d61fb0059bf7bb199..608962b2bd78f53b790d435a6583bde718d2f2d5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/relationships.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26c8521227d4950040d23abf1b725a905f1fdac9..8a333401be7a134dda696139273a4b5383b71618 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 343699cc97e600f1d158b8f5c052948455baa287..28a32b3f23cc5a958db29730981dc768b6006d9d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index da6dd456eff57356cbec9b551bd5e7fa4f9fbe5d..b5ba1615ca9e5199930f1628853d77d9f11b179d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 56963c6af1d30a126b3b3135a16d1d24791ae95c..10e417e85d19ea02f3df4fad73c84bb9a3cc7736 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state_changes.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e7f333690257c359b860d3d77a959af4bdab6ab1..8a530399dcc26f5de2b7c6669e44b2193197ccb5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c2f46e7ab4cf85becdedcd03627473ca8fbc4a25..4ecbfd64c1e084c1a7d1f90beaa07bbbb6338053 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategy_options.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 980c4793b908ba65b73b055e086806f72a0adc98..06a1948674b23bd4d28c2caacf36e3cf04e42a31 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 34d53ccf84b0d15be758b68b896255c8ec2389ad..d057f1746aec44dfd0a2eaf1544925eb34312e6a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4dc26dfd80bfece24762d1d0d674325f91b4314f..81233f6554dc68de1e82c10c62cd7392995a147f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7552dec332ed4de3f9ef5eea7227b5c2edcabf54..809fdd2b0e115bfd52f2b1279a1f83d7635cbfac 100644 (file)
@@ -1,5 +1,5 @@
 # orm/writeonly.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bdc97a8a888182e7c99cf1e5b278d7d524dd61b1..8220ffad497373fca27cf4c4f69b268c6060655d 100644 (file)
@@ -1,5 +1,5 @@
 # pool/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 24bdc25d32684285daf66106cc97fe952b16d0fa..b91048e387911c990c81a31323e431ce3189b065 100644 (file)
@@ -1,5 +1,5 @@
 # pool/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b54fad125b185c3f1d1edb375c2134f960bab7ec..4ceb260f79b8815e856dc6b3d9c5349057f557e4 100644 (file)
@@ -1,5 +1,5 @@
 # pool/events.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d046d9f63e4230c7da069274f78220dc294579e5..44529fb169361d2738e3f6a015bd16a54765432a 100644 (file)
@@ -1,5 +1,5 @@
 # pool/impl.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9edca4e5cce9964e56ba47135b7fa8a58bf36f25..32adc9bb218286fed3688c5ea0be8bbcfbf3e0de 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9e0d2ca2a79234c5efc02e6cc81ed64d6fd91f31..188f709d7e4ab598f0aee07625c72ac1891f4384 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3afe70e3afc10109a6968fa83cb31042fcc6f9bc..0a6f60115f19e87c4b37f1667fc513987cb26374 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_dml_constructors.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 121386781e9a99e8ff60a58720e31cc75ced179a..b628fcc9b5244c8b49d07fef0fce247eec4a2a3b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_elements_constructors.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bccb533ca0ef509482fab102b4bfea013871a0dd..c37d805ef3fb52ec2735d5431e9613eb30c94220 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_orm_types.py
-# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 18bdc63eacd063e3a2e9bd9b60858326c0d9ccc1..bb553668c30cd5a78dd19a4255b5de727e08da8e 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_selectable_constructors.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9abc34703768c661422f20b91bedea1d742257a7..f46924bf83b24346612fb1842288323e5b571629 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_typing.py
-# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8e5c55e0c500de3297619606ee75ba025940f96f..101d1d102ed942d4aa94d05aa4a91bc680c5367c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_util_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 29b1b4cdfa2c54364c0f921652eb9738e620bedb..0fb2390c11ee77118fd09f2999eba791399d1081 100644 (file)
@@ -1,5 +1,5 @@
 # sql/annotation.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17c0a92df28b90befe4c602b20dc37315de51d51..a93ea4e42e8a0452385c8af5e5bb80d72ad3e26d 100644 (file)
@@ -1,5 +1,5 @@
 # sql/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d59958bf262fc7061718b9a6df530e6041e0f4d8..189c32b27169f6dba86867327cdf8e42ca2987de 100644 (file)
@@ -1,5 +1,5 @@
 # sql/cache_key.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c30258a890550ef246d187e7e30e6d4838af7310..7119ae1c1f56fd4f7f3dcb9256293b0be53a9c4f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/coercions.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 21ba058abfdafb1986eba01f90df3c740abd6b82..6010b95862e5d8c6138551f544655d965d7cce7a 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d142665823928ede47e113e862e050f3bdb657e9..19af40ff08038e375d51e87f4d95378287713963 100644 (file)
@@ -1,5 +1,5 @@
 # sql/crud.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c524f896f957e37962820c03b4d0b861a54a0841..7210d930a188dd545673afda6212f1029d2b1a47 100644 (file)
@@ -1,5 +1,5 @@
 # sql/ddl.py
-# Copyright (C) 2009-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 76131bcaa45e79dda102e88fb43bb554e0c06310..7fa5dafe9ce4875e58fe79fedfc34cc34e3157fe 100644 (file)
@@ -1,5 +1,5 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4fa4c67f00c248cedf87a30ac645c611063bf176..d7496cd367288f6a1ed7275c7686026a178ebc6b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/dml.py
-# Copyright (C) 2009-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4ca8ec4b43f18b35cd8b7152e8e84d6e0eedb26b..41630261edfde3749e730b2604b565eadd38da39 100644 (file)
@@ -1,5 +1,5 @@
 # sql/elements.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e9d19f337d02ecd5b59d8578c14bcb602a0ddff3..601092fd91283fba5111b91db8b9ad051cb495bd 100644 (file)
@@ -1,5 +1,5 @@
 # sql/events.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ba42445d0131d94498bdf7dec7bdb0d793ec92a8..f8ac3a9ecad8064bd26f2200b6836cb726bc6044 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7160922cc6c6b7b69a782dd99d42239bf0c9c556..b905913d376edb9b9a3f9fdb419dd7933b549d13 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 061da29707cee793154eb9ac8db80b1375bfb4a7..8d70f800e74614be694952f4e32f18b8809a5440 100644 (file)
@@ -1,5 +1,5 @@
 # sql/lambdas.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7213ddb297e33968dbf484de9e7bf5a35f0d9cab..58203e4b9a1d59155c815f244a985f54bf9c954b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/naming.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c97f03badb5471d05b3223037cea2e95f01cabeb..addcf7a7f99d76d4881e00ccd5868a77d8d5e738 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f37398cf61e20d2d151c4b2c51b68baa9ac632a6..9c5e43baaccb14f44bc5c9b46327301fea9a5f2e 100644 (file)
@@ -1,5 +1,5 @@
 # sql/roles.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index de6d37f4391929159f72d92fdb23f0587354310b..f1f93a955497021b94b1f2b8e0a10193b512054c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/schema.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b761943dc9dccf8a2731c218e521647edc08f0c7..e12a44179ef6b7e5dafd6e3c839453dfacc429b2 100644 (file)
@@ -1,5 +1,5 @@
 # sql/selectable.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4972f2414d72f63a42f84efa789b217f375b5db4..212b86ca8ab6cafee20d0fa3d387e9c7d0ac40f7 100644 (file)
@@ -1,5 +1,5 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8bb2939cb31d2d4f8cd6407fd4c21f95df2006e7..13ad28996e086cddf458dba855b74eda895b5028 100644 (file)
@@ -1,5 +1,5 @@
 # sql/traversals.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bf38be341174cd93923f7af1803658b541190445..fb72c825e576b1f414a3fe7e3fa16cd7975d7d1b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/type_api.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d7252f899ef233ab7f35821a5a9e2059cc920754..98990041784297912fc15402bcb72d2e16b4542e 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2c7202c2989cb30a05652b46a09e4cbe97bf460a..7ae89216877a083bec4bf29dbfa00f82783622a6 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7fa361c9b92aa226afab46488488f0005756184f..4e574bbb24e9a578f4de041962c04bcd03836ce8 100644 (file)
@@ -1,5 +1,5 @@
 # testing/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index baef79d1817d97e3815f6645439adedb198012f8..8364c15f8ffc8cc5f0814daf7235f1526e8e89fb 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertions.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ae4d335a9609fa9036d7ba9f662e7d7023874dd7..81c7138c4b5ed21f884d330a6ce3903ec19c0302 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d58717aafbc2d204627a684d594adecb8322209f..83a7a4010cfb25e170c595c84498388fd7a909a2 100644 (file)
@@ -1,5 +1,5 @@
 # testing/asyncio.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2555073c2801841cd56604f60bf7832129fc34d5..f3598f0910588ca9e047c240054501072f5339d5 100644 (file)
@@ -1,5 +1,5 @@
 # testing/config.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index acb07ce615d36f25419325f8fbb2951d547f1d97..fc51e7d873159d6fd53e67a5ec5ea029388d8eb0 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8f0f36bd1c43cea2cc024b006a45efba35d58225..5bd4f7de2400194728c9ad205298a135653e9d7d 100644 (file)
@@ -1,5 +1,5 @@
 # testing/entities.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index addc4b75940a2ce006173e8cdf7efc78a8ca178a..8ff9b644384c0acecaae46e350898981413a999f 100644 (file)
@@ -1,5 +1,5 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5981fb583d249a877917cf22ec3fc9d66614857b..f2948dee8d3dc86d520fe695a013ceeed3e0b177 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0697f4902f203bd9acc2e66e1fdd1e3250b20e63..09d45a0a2205e801d3d04ce4a5149f638ca2b769 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5a167d2b40a33af7bbe2adeb9954409670120112..7718b2bd8f51dc9ee83881295679828e240a82aa 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/mypy.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5ddd21ec64b74f1cc98268428b13d5302d647d56..77cb243a8088b3aabc0c4a56fa86c0cfc865a6f5 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/orm.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 39e5b08446571e5f758571de5ccdc2f82721d006..44cf21c24fe08ee4ecaee85bab554523ad347331 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/sql.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 761891ad4ac0e68b287381d0abfe12728e1b73dd..9317be63b8faed9a006569da3feb7ffde23c0407 100644 (file)
@@ -1,5 +1,5 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0f98777319512f67ae594be10868dcfaf50aa392..ce960be967db00e576150ab269ebbe27afab0dc4 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d0d375458eda8cc0e9465b39466e3ef22a08132d..2ad4d9915ebc25519f80fe1c214fc06cea6599f6 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/bootstrap.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a642668be936de23f82e96a23538568d5cad8333..2dfa441413df816c38ac12195fe88c4755b8847a 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/plugin_base.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6024b39addbda7305d7e200c48be826497f7de84..aa531776f805204ee8e6011890f6fd77ac196a21 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/pytestplugin.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b9093c9017a21872dd9a9f8b8f81944daaa8f7ff..0d90947e444b6d73d2e214ae1a7539a65f837871 100644 (file)
@@ -1,5 +1,5 @@
 # testing/profiling.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 080551222b179188860cbecb83bf2c31a6c5be51..7a8bcc5f3cba3158619f78adb3db32614923ccfb 100644 (file)
@@ -1,5 +1,5 @@
 # testing/provision.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 539d0233b526837c3af1a6e5077fa936382f77d7..af466b2d56ef7a833e700fed6dafac2a55967f17 100644 (file)
@@ -1,5 +1,5 @@
 # testing/requirements.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7dfd33d4d0936fd35b279b4dd51c2f8e767bb438..0dd7de2029de644a400dd4c521c0f8b680c1647a 100644 (file)
@@ -1,5 +1,5 @@
 # testing/schema.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ee4b33b0a23afe51c6ce557f6cc98384bc8cb1cc..141be112f2b860cf238e9260a752329a6f4b2c96 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5d37880e1ebf75f7658b6316530ac78a13018b06..4e4d420faa13861d7487492ca53075cd233892a1 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_cte.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3d9b8ec13d035f6102e33de111f57f6afa56b822..c7e7d817d8e4babdcc97b8c6552848616b70e6a5 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_ddl.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 696472037d12d6cddd8ebdb66c94b0983a39a689..ae67cc10adcb091b4fa1db84b3c57edfd9845075 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_dialect.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1cff044bc3e0422b8fefcfe0ef33d90788fd805c..8467c351790c7882d735eba2061afcbc17633fbf 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_insert.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d738f76893391db577dd6eea124eef3fc043d830..e280369fc086125d2f58f8d089f9673b21362764 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_reflection.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7d1565bba3d494e9391f9bcba5878c4cad81df79..f22fd5ae13546b914ecbb86a13bddfe6b79eb3da 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_results.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a7dbd364f1b480506ccaabc56550b443b9deade1..59953fff59c97b33121cd1db3ac1fde43364426e 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_rowcount.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d81e5a04c89b6c5e7a0c2ad8e026efa961a23ae9..7f0b1a653de4e683cb0d12b80d47b0d69c192928 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_select.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 138616f139970e67658feb3f4b73974bd5a93c6c..f0e6575370b76c6e2c5a5c8372c023f4aad65514 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_sequence.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d4c5a2250dc95804ae06df04d597a1f63893b252..de3cd53e345b4a15d17878c74587f02b11215716 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_types.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1f15ab5647f51019b8f3bbab07c36918d16237df..c8dd3350588b4c5da2e98be63ce4f82073632150 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_unicode_ddl.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fd4757f9a4a43c552b1f721f593ef50bc0519ac4..85a8d393391029c52b10cbefb5eea1dd41f39f65 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_update_delete.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d2f8f5b618471639d0e9cb775ea4ff4c07b6e1a6..42f077108f588bebd050312c487f8b4d6e7b34c6 100644 (file)
@@ -1,5 +1,5 @@
 # testing/util.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index baef037f73ef78abe94f0a6528fa2b9f994657f0..9be0813b584b396a31f3e7f0d4fcf7983f043c82 100644 (file)
@@ -1,5 +1,5 @@
 # testing/warnings.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a1374d94f68792aebbcc6348314c86247390c97d..e0a4e356b6d2a87355b133510a3641b1b1dca8bb 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 16c109c0bbca3b16132b79273ece27ab7344de0c..76bddab86c28713b12f8cdf6badcaaa7854a79fe 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 719817acd4d4405e10392d66d2a7c22862975344..9ca5e60a202478058f9fcb9e88b884172820c37d 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b853f42a4a8e03dc32827b9a86b6a9edc2342d4f..9708402d39f79b663992a751a6fe945c962a2d00 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ef99d581436555db1deda44999b7b44d17b83c21..b34e27c159cc8b24154bce568805ca5998834859 100644 (file)
@@ -1,5 +1,5 @@
 # util/_has_cython.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cf1867de17fac8723db97be0af433929743a6982..efc477b321d2391d1ebe8731d3ceceadd6016760 100644 (file)
@@ -1,5 +1,5 @@
 # util/_immutabledict_cy.py
-# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e7511c94fca3101ceac4952e4100639730aa61bd..a65de17f5b5f9fd46713b12c6170aabbdc19bf00 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aa3eb45139b5f99a06cb55da631765920d43782a..da758e5dce65954d20f8d065a01fbfad93c52a44 100644 (file)
@@ -1,5 +1,5 @@
 # util/concurrency.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c143138b8e768f0d680851376fb96ceb11ab2cf8..0d796313d84fa1a12828d3e4afa32f80f7eec993 100644 (file)
@@ -1,5 +1,5 @@
 # util/cython.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3a59a8a4bcd4e9db1bf82dc8dd3d77f3ef194388..88b687240382ede48f8923814fe21dc3934a5993 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4f0e17420ada563c810c4cb6f0a59c7f88f28f03..19c1cc21e38e1bb8970f6197527785ed2d6b7824 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e91ce685450dff9d3f409e1cd518b694bec14c5a..4ea9aa90f30c161cb62e5bfa8d47958340c02715 100644 (file)
@@ -1,5 +1,5 @@
 # util/preloaded.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 149629dc2c87d2f0a075d16dece47e98dd21ed2b..5b0c9ac2952f6765129aea7fb4a1a1e5489b1681 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a203a2ab75a8cfeaa209a61ae00f230e2b189f66..407c2d45075e9d0b657ddc1347c05fd2ffedc7d1 100644 (file)
@@ -1,5 +1,5 @@
 # util/tool_support.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aebbb436cec19c96cbe199fa5a0e9511d4b2837a..393c855abca87075e3762839fa45c60f6b3ac0b0 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9573c52ee653353d643ad465d0a2b7cfc3c17408..7809c9fcad7cd9766e3abcbfbb2312bc2f9c453b 100644 (file)
@@ -1,5 +1,5 @@
 # util/typing.py
-# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2025 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under