Skip to content

Commit 37d3598

Browse files
authored
chore(release): deploy package to Anaconda.org (#299)
1 parent 99bd791 commit 37d3598

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
1. [#303](https://github.com/influxdata/influxdb-client-python/pull/303): Backslash escaping in serialization to Line protocol
1717
1. [#312](https://github.com/influxdata/influxdb-client-python/pull/312): Zip structure for AWS Lambda
1818

19+
### CI
20+
1. [#299](https://github.com/influxdata/influxdb-client-python/pull/299): Deploy package to [Anaconda.org](https://anaconda.org/influxdata/influxdb_client)
21+
1922
## 1.19.0 [2021-07-09]
2023

2124
### Features

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ influxdb-client-python
2020
:target: https://pypi.org/project/influxdb-client/
2121
:alt: PyPI package
2222

23+
.. image:: https://anaconda.org/influxdata/influxdb_client/badges/version.svg
24+
:target: https://anaconda.org/influxdata/influxdb_client
25+
:alt: Anaconda.org package
26+
2327
.. image:: https://img.shields.io/pypi/pyversions/influxdb-client.svg
2428
:target: https://pypi.python.org/pypi/influxdb-client
2529
:alt: Supported Python versions

conda/meta.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{% set name = "influxdb_client" %}
2+
{% set version = "1.19.0" %}
3+
4+
5+
package:
6+
name: {{ name|lower }}
7+
version: {{ version }}
8+
9+
source:
10+
url: https://pypi.python.org/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
11+
sha256: 8954562259dd3770d89cd3db13cbe48e44c56e000f8af377b8c606f7c91c5f58
12+
13+
build:
14+
number: 0
15+
noarch: python
16+
script: {{ PYTHON }} -m pip install . -vv
17+
18+
requirements:
19+
host:
20+
- python >=3.6
21+
- pip
22+
run:
23+
- python >=3.6
24+
- setuptools
25+
# - rx >=3.0.1
26+
# - certifi >=14.05.14
27+
# - six >=1.10
28+
# - python_dateutil >=2.5.3
29+
# - setuptools >=21.0.0
30+
# - urllib3 >=1.15.1
31+
# - pytz >=2019.1
32+
33+
about:
34+
home: https://github.com/influxdata/influxdb-client-python
35+
license: MIT License
36+
license_file: ../LICENSE
37+
summary: The Python client library for the InfluxDB 2.0.
38+
dev_url: https://github.com/influxdata/influxdb-client-python
39+

0 commit comments

Comments
 (0)