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

[bot-automerge] dbt-snowflake v1.9.0 #31

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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 .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions .ci_support/linux_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
cdt_name:
- cos7
- conda
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
docker_image:
- quay.io/condaforge/linux-anvil-cos7-x86_64
- quay.io/condaforge/linux-anvil-x86_64:alma9
python_min:
- '3.9'
2 changes: 1 addition & 1 deletion azure-pipelines.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions build-locally.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 11 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "dbt-snowflake" %}
{% set version = "1.8.4" %}
{% set version = "1.9.0" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: 9fe2fd1b7b65bdb31588c77398c1e8fe6ab77dd5395ba7dcf096fe3c9b3cc3cf
url: https://pypi.org/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
sha256: 70ad763e334119fb7af96a924f6a2c67a873ffc1c4f5a4723b7948825c4de399

build:
noarch: python
Expand All @@ -17,23 +17,27 @@ build:
requirements:
host:
- pip
- python >=3.8
- python {{ python_min }}
- setuptools
run:
- python >={{ python_min }}
# via Grayskull
- dbt-adapters >=1.1.1,<2.0
- dbt-common >=1.0.4,<2.0
- python >=3.8
- dbt-adapters >=1.10.4,<2.0
- dbt-common >=1.10,<2.0
- dbt-core >=1.8.0
- snowflake-connector-python >=3.0,<4.dev0
- agate

# From snowflake-connector-python[secure-local-storage]~=3.0
- keyring >=23.1.0,<26.0.0

test:
imports:
- dbt.adapters.snowflake
commands:
- pip check
requires:
- python {{ python_min }}
- pip

about:
Expand Down
Loading