This repository has been archived by the owner on Sep 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version to 0.6.0 and update pylint
- Loading branch information
1 parent
165c82c
commit 9411a6f
Showing
3 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "shikithon" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
description = "Yet another Python wrapper for Shikimori API" | ||
authors = [ | ||
"SecondThundeR <[email protected]>" | ||
|
@@ -36,7 +36,7 @@ ratelimit = "^2.2.1" | |
loguru = "^0.6.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pylint = "^2.13.9" | ||
pylint = "^2.14.0" | ||
pre-commit = "^2.19.0" | ||
yapf = "^0.32.0" | ||
isort = "^5.10.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
"""Contains package version and some magic for importing API object.""" | ||
from shikithon.api import API | ||
|
||
__version__ = '0.5.0' | ||
__version__ = '0.6.0' | ||
__all__ = ['API'] |