Skip to content

Add py.typed to setup.cfg #566

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

Open
wants to merge 2 commits into
base: v3
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

# Release Notes

## [Unreleased](https://github.com/algolia/algoliasearch-client-python/compare/v3.0.0...master)
## [Unreleased](https://github.com/algolia/algoliasearch-client-python/compare/v3.1.0...master)

## [v3.1.0](https://github.com/algolia/algoliasearch-client-python/compare/v3.0.0...v3.1.0)

### Added

- Add `py.typed` to python package ([PEP 561](https://www.python.org/dev/peps/pep-0561/)) so downstream packages can use type annotations. ([#566](https://github.com/algolia/algoliasearch-client-python/pull/566))

## [v3.0.0](https://github.com/algolia/algoliasearch-client-python/compare/v2.6.3...v3.0.0)

Expand Down
2 changes: 1 addition & 1 deletion algoliasearch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "3.0.0"
VERSION = "3.1.0"
Empty file added py.typed
Empty file.
6 changes: 5 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = algoliasearch
version = 3.0.0
version = 3.1.0
author = Algolia Team
author_email = [email protected]
maintainer = Algolia Team
Expand Down Expand Up @@ -45,5 +45,9 @@ exclude =
*.tests.*
tests.*

[options.package_data]
algoliasearch =
py.typed

[bdist_wheel]
universal = 1