Skip to content

Commit

Permalink
Merge pull request #23 from tefra/update-deps
Browse files Browse the repository at this point in the history
Update dependencies
  • Loading branch information
tefra committed Apr 29, 2019
2 parents acc5606 + f14aafd commit 5bb53ed
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 16 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
repos:
- repo: https://github.com/asottile/seed-isort-config
rev: v1.5.0
rev: v1.8.0
hooks:
- id: seed-isort-config
args: ['--exclude=docs/*']
- repo: https://github.com/pre-commit/mirrors-isort
rev: v4.3.4
rev: v4.3.17
hooks:
- id: isort
- repo: https://github.com/ambv/black
rev: 18.9b0
rev: 19.3b0
hooks:
- id: black
args: ['--line-length=79']
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.1.0
rev: v2.2.1
hooks:
- id: flake8
- id: trailing-whitespace
Expand All @@ -37,6 +37,6 @@ repos:
args: ['--in-place', '--pre-summary-newline']

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.670
rev: v0.701
hooks:
- id: mypy
8 changes: 4 additions & 4 deletions pytuber/core/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from pytuber.core.commands.cmd_add import add_from_editor, add_from_file
from pytuber.core.commands.cmd_autocomplete import autocomplete
from pytuber.core.commands.cmd_clean import clean
from pytuber.core.commands.cmd_fetch import fetch
from pytuber.core.commands.cmd_list import list
from pytuber.core.commands.cmd_push import push
from pytuber.core.commands.cmd_quota import quota
from pytuber.core.commands.cmd_remove import remove
from pytuber.core.commands.cmd_setup import setup
from pytuber.core.commands.cmd_show import show
from pytuber.core.commands.cmd_autocomplete import autocomplete
from pytuber.core.commands.cmd_clean import clean
from pytuber.core.commands.cmd_quota import quota
from pytuber.core.commands.cmd_add import add_from_editor, add_from_file

__all__ = [
"setup",
Expand Down
1 change: 0 additions & 1 deletion pytuber/lastfm/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
from pytuber.lastfm.commands.cmd_fetch import fetch
from pytuber.lastfm.commands.cmd_setup import setup


__all__ = ["add", "setup", "fetch"]
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
packages=find_packages(),
version=meta["version"],
install_requires=[
"lxml == 4.3.1",
"lxml == 4.3.3",
"click == 7.0",
"click_completion == 0.5.0",
"click_completion == 0.5.1",
"pydrag == 18.1",
"attrs == 18.2.0",
"attrs == 19.1.0",
"tabulate[widechars] == 0.8.3",
"yaspin == 0.14.1",
"yaspin == 0.14.2",
"google-api-python-client == 1.7.8",
"google-auth == 1.6.2",
"google-auth-oauthlib == 0.2.0",
"google-auth == 1.6.3",
"google-auth-oauthlib == 0.3.0",
],
extras_require={
"dev": [
Expand Down

0 comments on commit 5bb53ed

Please sign in to comment.