Skip to content

Commit 47df3fb

Browse files
committed
Fix copyright years
1 parent c798faf commit 47df3fb

File tree

221 files changed

+230
-226
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

221 files changed

+230
-226
lines changed

.spdx-license-header.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
SPDX-FileCopyrightText: 2023-present MTS PJSC
22
SPDX-License-Identifier: Apache-2.0

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
# Configuration file for the Sphinx documentation builder.
44
#
@@ -26,7 +26,7 @@
2626
# -- Project information -----------------------------------------------------
2727

2828
project = "syncmaster"
29-
copyright = "2023-2024 MTS PJSC"
29+
copyright = "2023-2025 MTS PJSC"
3030
author = "DataOps.ETL"
3131

3232
# The version info for the project you're documenting, acts as replacement for

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,10 @@ ignore = [
437437
per-file-ignores = [
438438
# WPS102 Found incorrect module name pattern
439439
# WPS432 Found magic number: 256
440-
"*migrations/*.py:WPS102,WPS432",
441-
"*db/models/*.py:WPS102,WPS432",
440+
# WPS226 Found string literal over-use: value > 15
441+
# WPS342 Found implicit raw string
442+
"*migrations/*.py:WPS102,WPS432,WPS226,WPS342",
443+
"*db/models/*.py:WPS102,WPS432,WPS342",
442444
"*db/mixins/*.py:WPS102,WPS432",
443445
# WPS432 Found magic number: 180
444446
"*settings/*.py:WPS432",

syncmaster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33

44
_raw_version = "0.3.0"

syncmaster/db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0

syncmaster/db/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
from collections.abc import AsyncGenerator, Callable
44
from typing import Any

syncmaster/db/migrations/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/env python3
22

3-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
3+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
44
# SPDX-License-Identifier: Apache-2.0
55

66
from __future__ import annotations

syncmaster/db/migrations/env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
import asyncio
44
import os

syncmaster/db/migrations/versions/2023-11-23_0001_create_user_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
"""Create user table
44

syncmaster/db/migrations/versions/2023-11-23_0002_create_group_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023-2024 MTS PJSC
1+
# SPDX-FileCopyrightText: 2023-present MTS PJSC
22
# SPDX-License-Identifier: Apache-2.0
33
"""Create group table
44

0 commit comments

Comments
 (0)