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

Update license header and split large files into modules #527

Closed
Closed
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ ENV/
generated_version.py
*coverage.xml
.DS_Store
junit.xml
sfc-gh-jvasquezrojas marked this conversation as resolved.
Show resolved Hide resolved

# Editor specific
.idea/
Expand Down
4 changes: 4 additions & 0 deletions DESCRIPTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Snowflake Documentation is available at:
Source code is also available at:
<https://github.com/snowflakedb/snowflake-sqlalchemy>

# Unreleased notes

- Split large files into modules and update license headers

# Release Notes

- v1.6.1(July 9, 2024)
Expand Down
13 changes: 12 additions & 1 deletion license_header.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
Copyright (c) 2024 Snowflake Inc.

Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
12 changes: 11 additions & 1 deletion src/snowflake/sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Copyright (c) 2024 Snowflake Inc.
#
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import sys

Expand Down
12 changes: 11 additions & 1 deletion src/snowflake/sqlalchemy/_constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Copyright (c) 2024 Snowflake Inc.
#
# Copyright (c) 2012-2023 Snowflake Computing Inc. All rights reserved.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from .version import VERSION

# parameters needed for usage tracking
Expand Down
Loading
Loading