Skip to content

Commit

Permalink
fix: add py.typed to the package definition (#667)
Browse files Browse the repository at this point in the history
  • Loading branch information
bednar authored Sep 2, 2024
1 parent 7ad9533 commit 63949b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 1.46.0 [unreleased]

### Bug Fixes
1. [#667](https://github.com/influxdata/influxdb-client-python/pull/667): Missing `py.typed` in distribution package

### Examples:
1. [#664](https://github.com/influxdata/influxdb-client-python/pull/664/): Multiprocessing example uses new source of data
1. [#665](https://github.com/influxdata/influxdb-client-python/pull/665): Shows how to leverage header fields in errors returned on write.
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
extras_require={'extra': extra_requires, 'ciso': ciso_requires, 'async': async_requires, 'test': test_requires},
long_description_content_type="text/markdown",
packages=find_packages(exclude=('tests*',)),
package_data={'influxdb_client': ['py.typed']},
test_suite='tests',
python_requires='>=3.7',
include_package_data=True,
Expand Down

0 comments on commit 63949b5

Please sign in to comment.