Skip to content

Commit 9ab8318

Browse files
SNOW-1877763: Update copyright notice to include 2025 (#2850)
<!--- Please answer these questions before creating your pull request. Thanks! ---> 1. Which Jira issue is this PR addressing? Make sure that there is an accompanying issue to your PR. <!--- In this section, please add a Snowflake Jira issue number. Note that if a corresponding GitHub issue exists, you should still include the Snowflake Jira issue number. For example, for GitHub issue #1400, you should add "SNOW-1335071" here. ---> Fixes SNOW-1877763 2. Fill out the following pre-review checklist: - [ ] I am adding a new automated test(s) to verify correctness of my new code - [ ] If this test skips Local Testing mode, I'm requesting review from @snowflakedb/local-testing - [ ] I am adding new logging messages - [ ] I am adding a new telemetry message - [ ] I am adding new credentials - [ ] I am adding a new dependency - [ ] If this is a new feature/behavior, I'm adding the Local Testing parity changes. - [ ] I acknowledge that I have ensured my changes to be thread-safe. Follow the link for more information: [Thread-safe Developer Guidelines](https://github.com/snowflakedb/snowpark-python/blob/main/CONTRIBUTING.md#thread-safe-development) 3. Please describe how your code solves the related issue. Update copyright notice to include 2025.
1 parent 8581f70 commit 9ab8318

File tree

691 files changed

+846
-722
lines changed

Some content is hidden

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

691 files changed

+846
-722
lines changed

license_header.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33

src/snowflake/snowpark/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
3+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
44
#
55

66
"""
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#
2-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33
#
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#
2-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33
#

src/snowflake/snowpark/_internal/analyzer/analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
3+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
44
#
55
import uuid
66
from collections import Counter, defaultdict

src/snowflake/snowpark/_internal/analyzer/analyzer_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
3+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
44
#
55

66
import math

src/snowflake/snowpark/_internal/analyzer/binary_expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33
#
44

55
from typing import AbstractSet, List, Optional

src/snowflake/snowpark/_internal/analyzer/binary_plan_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33
#
44

55
from typing import Dict, List, Optional

src/snowflake/snowpark/_internal/analyzer/datatype_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
#
3-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
3+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
44
#
55

66
import binascii

src/snowflake/snowpark/_internal/analyzer/expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
2+
# Copyright (c) 2012-2025 Snowflake Computing Inc. All rights reserved.
33
#
44

55
import copy

0 commit comments

Comments
 (0)