Skip to content

Commit

Permalink
update version to 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Pocoder committed Sep 6, 2022
1 parent 86365f1 commit 0c5086a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.0.8
-------------------
* Add `success_on_reasons` param to `WaitAppBatchSensor` init
* Format all docs according to sphinx standard

0.0.7
-------------------
* Add `WaitAppBatchSensor` for waiting app batches
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name='airflow-provider-toloka',
packages=['toloka_provider', *(f'toloka_provider.{package}' for package in find_packages('toloka_provider'))],
version='0.0.7',
version='0.0.8',
description='A Toloka provider for Apache Airflow',
long_description=readme,
long_description_content_type='text/markdown',
Expand All @@ -33,6 +33,7 @@
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Apache Airflow',
'Framework :: Apache Airflow :: Provider',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
Expand Down
2 changes: 1 addition & 1 deletion toloka_provider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ def get_provider_info():
'hook-class-name': 'toloka_provider.hooks.toloka.TolokaHook',
},
],
'version': ['0.0.7'],
'version': ['0.0.8'],
}
4 changes: 2 additions & 2 deletions toloka_provider/hooks/toloka.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ class TolokaHook(BaseHook):
"""
Hook to interact with Toloka.
Performs a connection to Toloka and retrieves client.
Performs a connection to Toloka and retrieves client.
:param toloka_conn_id: Airflow Connection with OAuth token for Toloka.
:param toloka_conn_id: Airflow Connection with OAuth token for Toloka.
You can learn more about how to get it [here](https://toloka.ai/docs/api/concepts/access.html#access__token).
"""

Expand Down

0 comments on commit 0c5086a

Please sign in to comment.