Skip to content

Commit

Permalink
fix stub file
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelmaksimov committed May 28, 2021
1 parent 3408dab commit 68f1eed
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Prev version

Last version. Has backward incompatible changes.

pip install --upgrade tapi-yandex-metrika==2021.5.27
pip install --upgrade tapi-yandex-metrika==2021.5.28

## Documentation

Expand Down
2 changes: 1 addition & 1 deletion docs/logsapi.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ Copyright (c) Pavel Maksimov.


## CHANGELOG
### Release 2021.5.27
### Release 2021.5.28
- Add stub file (syntax highlighting)


Expand Down
2 changes: 1 addition & 1 deletion docs/management.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Good luck friend! Put an asterisk;)
Copyright (c) Pavel Maksimov.

## CHANGELOG
### Release 2021.5.27
### Release 2021.5.28
- Add stub file (syntax highlighting)


Expand Down
2 changes: 1 addition & 1 deletion docs/stats.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Good luck friend! Put an asterisk;)


## CHANGELOG
### Release 2021.5.27
### Release 2021.5.28
- Add stub file (syntax highlighting)


Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ def get_version(package):
author_email="[email protected]",
url="https://github.com/pavelmaksimov/tapi-yandex-metrika",
packages=[package],
include_package_data=True,
install_requires=["requests", "orjson", "tapi-wrapper2>=0.1,<0.2"],
include_package_data=False,
install_requires=["requests", "orjson", "tapi-wrapper2>=0.1.2,<1.0"],
license="MIT",
zip_safe=False,
keywords="tapi,wrapper,yandex,metrika,api",
test_suite="tests",
package_data={
package: ["*"],
},
)
2 changes: 1 addition & 1 deletion tapi_yandex_metrika/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "Pavel Maksimov"
__email__ = "[email protected]"
__version__ = "2021.5.27"
__version__ = "2021.5.28"

from .resource_mapping import *
from .tapi_yandex_metrika import (
Expand Down
2 changes: 1 addition & 1 deletion tapi_yandex_metrika/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(self, name):

def __str__(self):
return (
"Starting from version 2021.2.21, this {} is deprecated and not supported. "
"This {} is deprecated and not supported. "
"Install a later version "
"'pip install --upgrade tapi-yandex-metrika==2020.10.20'. "
"Info https://github.com/pavelmaksimov/tapi-yandex-metrika"
Expand Down

0 comments on commit 68f1eed

Please sign in to comment.