Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #1814

Merged
merged 1 commit into from
Oct 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/dbt/linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _find_new_additions(self):

Callers must hold the lock.
"""
for node, in_degree in dict(self.graph.in_degree()).items():
for node, in_degree in self.graph.in_degree():
if not self._already_known(node) and in_degree == 0:
self.inner.put((self._scores[node], node))
self.queued.add(node)
Expand Down
2 changes: 1 addition & 1 deletion core/dbt/task/rpc_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import threading
from contextlib import contextmanager

from werkzeug.wsgi import DispatcherMiddleware
from werkzeug.middleware.dispatcher import DispatcherMiddleware
from werkzeug.wrappers import Request, Response
from werkzeug.serving import run_simple
from werkzeug.exceptions import NotFound
Expand Down
8 changes: 4 additions & 4 deletions core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ def read(fname):
install_requires=[
'Jinja2>=2.10',
'PyYAML>=3.11',
'sqlparse==0.2.3',
'networkx>=1.11,<3',
'sqlparse>=0.2.3,<0.4',
'networkx>=2.3,<3',
'minimal-snowplow-tracker==0.0.2',
'requests>=2.18.0,<3',
'colorama==0.3.9',
'colorama>=0.3.9,<0.5',
'agate>=1.6,<2',
'jsonschema>=3.0.1,<4',
'json-rpc>=1.12,<2',
'werkzeug>=0.14.1,<0.15',
'werkzeug==0.15.6',
'dataclasses;python_version<"3.7"',
'hologram==0.0.3',
'logbook>=1.5,<1.6',
Expand Down
2 changes: 1 addition & 1 deletion plugins/snowflake/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
},
install_requires=[
'dbt-core=={}'.format(package_version),
'snowflake-connector-python>=1.6.12',
'snowflake-connector-python>=1.6.12,<2.1',
]
)