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

0.3.0 #3

Merged
merged 5 commits into from
Apr 4, 2024
Merged
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
19 changes: 14 additions & 5 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{% set name = "snowflake-telemetry-python" %}
{% set version = "0.2.0" %}
{% set version = "0.3.0" %}

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

source:
url: https://github.com/snowflakedb/{{ name }}/archive/refs/tags/v{{ version }}.tar.gz
sha256: dde61307590a944b50745e199f3dfa3cc1b1966fd0f5aa030d8e905c81083460
sha256: dbcc8daf0b98540608bc7abbc4df43c00148281fec88551007d5765c12d6c6cd

build:
number: 0
skip: true # [py<38 or py>311]
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation

requirements:
Expand All @@ -21,18 +22,26 @@ requirements:
- pip
run:
- python
- opentelemetry-sdk 1.12.0
- opentelemetry-api 1.12.0
- opentelemetry-exporter-otlp 1.12.0
- opentelemetry-sdk ==1.12.0
- opentelemetry-api ==1.12.0
- opentelemetry-exporter-otlp ==1.12.0

test:
source_files:
- tests
- src
requires:
- pip
# setuptools is included here to satisfy pip check.
- setuptools >=40,<66
ViridianMelody marked this conversation as resolved.
Show resolved Hide resolved
- pytest
imports:
- snowflake.telemetry
- snowflake.telemetry.version
commands:
- pip check
- pip install tests/snowflake-telemetry-test-utils
- pytest tests

about:
home: https://github.com/snowflakedb/snowflake-telemetry-python
Expand Down