-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed incorrect tags when requested with\without rating after opposite request * Improved testing * Fixed some mistyping * Fixed variable name from anonimus to anonymous
- Loading branch information
1 parent
c7c4a9f
commit 2a5f8e8
Showing
12 changed files
with
110 additions
and
85 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
- develop | ||
tags: | ||
- "*" | ||
pull_request: | ||
pull_request_target: | ||
branches: | ||
- master | ||
- develop | ||
|
@@ -23,11 +23,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Cache pip | ||
uses: actions/cache@v2.1.7 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | ||
|
@@ -47,11 +47,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v3 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
- name: Cache pip | ||
uses: actions/cache@v2.1.7 | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.cache/pip | ||
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }} | ||
|
@@ -65,7 +65,7 @@ jobs: | |
run: | | ||
python setup.py sdist | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/[email protected].0 | ||
uses: pypa/[email protected].1 | ||
with: | ||
password: ${{ secrets.pypi_password }} | ||
release: | ||
|
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
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
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
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
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
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 +1 @@ | ||
__version__ = "2.0.10" | ||
__version__ = "2.0.11" |
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,47 +1,52 @@ | ||
appdirs==1.4.4 | ||
astroid==2.9.3 | ||
atomicwrites==1.4.0 | ||
attrs==21.4.0 | ||
black==22.1.0 | ||
bleach==4.1.0 | ||
certifi==2021.10.8 | ||
chardet==4.0.0 | ||
charset-normalizer==2.0.12 | ||
click==8.0.4 | ||
colorama==0.4.4 | ||
docutils==0.18.1 | ||
astroid==2.12.9 | ||
atomicwrites==1.4.1 | ||
attrs==22.1.0 | ||
black==22.8.0 | ||
bleach==5.0.1 | ||
certifi==2022.6.15 | ||
chardet==5.0.0 | ||
charset-normalizer==2.1.1 | ||
click==8.1.3 | ||
colorama==0.4.5 | ||
commonmark==0.9.1 | ||
dill==0.3.5.1 | ||
docutils==0.19 | ||
idna==2.10 | ||
importlib-metadata==4.11.2 | ||
importlib-metadata==4.12.0 | ||
iniconfig==1.1.1 | ||
isort==5.10.1 | ||
keyring==23.3.0 | ||
keyring==23.9.1 | ||
lazy-object-proxy==1.7.1 | ||
lxml==4.9.1 | ||
mccabe==0.6.1 | ||
mypy-extensions==0.4.3 | ||
packaging==21.3 | ||
pathspec==0.9.0 | ||
pkginfo==1.8.2 | ||
pathspec==0.10.1 | ||
pkginfo==1.8.3 | ||
platformdirs==2.5.2 | ||
pluggy==1.0.0 | ||
py==1.11.0 | ||
Pygments==2.11.2 | ||
pylint==2.12.2 | ||
pyparsing==3.0.7 | ||
pytest==7.0.1 | ||
Pygments==2.13.0 | ||
pylint==2.15.2 | ||
pyparsing==3.0.9 | ||
pytest==7.1.3 | ||
pywin32-ctypes==0.2.0 | ||
readme-renderer==33.0 | ||
regex==2022.3.2 | ||
requests==2.27.1 | ||
readme-renderer==37.1 | ||
regex==2022.8.17 | ||
requests==2.28.1 | ||
requests-toolbelt==0.9.1 | ||
rfc3986==2.0.0 | ||
rich==12.5.1 | ||
six==1.16.0 | ||
toml==0.10.2 | ||
tomli==2.0.1 | ||
tqdm==4.63.0 | ||
twine==3.8.0 | ||
typed-ast==1.5.2 | ||
typing-extensions==4.1.1 | ||
urllib3==1.26.8 | ||
tomlkit==0.11.4 | ||
tqdm==4.64.1 | ||
twine==4.0.1 | ||
typed-ast==1.5.4 | ||
typing_extensions==4.3.0 | ||
urllib3==1.26.12 | ||
webencodings==0.5.1 | ||
wrapt==1.13.3 | ||
zipp==3.7.0 | ||
wrapt==1.14.1 | ||
zipp==3.8.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
Oops, something went wrong.