Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update copyright year #77

Merged
merged 1 commit into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright (c) 2013-2016 Snowflake Computing, Inc.
Copyright (c) 2012-2023 Snowflake Computing, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion snowflake/ingest/error.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
from requests import Response

class IngestResponseError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion snowflake/ingest/errorcode.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.

ERR_INVALID_PRIVATE_KEY = 290001
2 changes: 1 addition & 1 deletion snowflake/ingest/simple_ingest_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
"""
simple_ingest_manager - Creates a basic ingest manager that synchronously sends
requests to the Snowflake Ingest service
Expand Down
2 changes: 1 addition & 1 deletion snowflake/ingest/utils/tokentools.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.

"""
tokentools.py - provides services for automatically creating and renewing
Expand Down
2 changes: 1 addition & 1 deletion snowflake/ingest/utils/uris.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.

"""
request_builder.py - Builds the URIs and http requests that we send for ingest
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
import pytest
import os
from cryptography.hazmat.backends import default_backend
Expand Down
2 changes: 1 addition & 1 deletion tests/test_unit_tokens.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2012-2017 Snowflake Computing Inc. All rights reserved.
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
"""
test_tokens.py - This defines a series of tests to ascertain that we are
capable of renewing JWT tokens
Expand Down
Loading