Skip to content

Commit 63949b5

Browse files
authored
fix: add py.typed to the package definition (#667)
1 parent 7ad9533 commit 63949b5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## 1.46.0 [unreleased]
22

3+
### Bug Fixes
4+
1. [#667](https://github.com/influxdata/influxdb-client-python/pull/667): Missing `py.typed` in distribution package
5+
36
### Examples:
47
1. [#664](https://github.com/influxdata/influxdb-client-python/pull/664/): Multiprocessing example uses new source of data
58
1. [#665](https://github.com/influxdata/influxdb-client-python/pull/665): Shows how to leverage header fields in errors returned on write.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
extras_require={'extra': extra_requires, 'ciso': ciso_requires, 'async': async_requires, 'test': test_requires},
6767
long_description_content_type="text/markdown",
6868
packages=find_packages(exclude=('tests*',)),
69+
package_data={'influxdb_client': ['py.typed']},
6970
test_suite='tests',
7071
python_requires='>=3.7',
7172
include_package_data=True,

0 commit comments

Comments
 (0)