-
Notifications
You must be signed in to change notification settings - Fork 219
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
BOM-1025 #436
BOM-1025 #436
Conversation
804f9c3
to
f65e54f
Compare
@jmbowman
It seems boto is using |
requirements/base.in
Outdated
@@ -11,3 +11,4 @@ simplejson | |||
six | |||
web-fragments | |||
webob>=1.6.0 | |||
boto3<1.13.9 # latest boto release cap upper version of python-dateutil to 2.8.0. That's why adding a cap here for boto |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
boto/botocore@00eade6
Add upper cap to avoid this release.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This constraint should go in requirements/constraints.txt
, which still needs to be added to this repo.
5eb0609
to
45eae12
Compare
requirements/base.in
Outdated
@@ -11,3 +11,4 @@ simplejson | |||
six | |||
web-fragments | |||
webob>=1.6.0 | |||
boto3<1.13.9 # latest boto release cap upper version of python-dateutil to 2.8.0. That's why adding a cap here for boto |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This constraint should go in requirements/constraints.txt
, which still needs to be added to this repo.
requirements/doc.txt
Outdated
@@ -4,49 +4,36 @@ | |||
# | |||
# make upgrade | |||
# | |||
alabaster==0.7.12 # via sphinx |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A lot of dependencies went missing in this file, please add --rebuild
to the pip-compile commands in Makefile
to avoid any caching of bad dependency data.
tox.ini
Outdated
@@ -37,7 +35,8 @@ commands = | |||
|
|||
[testenv:quality] | |||
deps = | |||
Django>=1.11,<2.0 | |||
django111: Django>=1.11,<2.0 | |||
django20: Django>=2.0,<2.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we actually run the quality checks with 2 different Django versions? Doesn't seem like we need two cases for this.
5288b98
to
a077fa0
Compare
@jmbowman you can review this PR. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a few more minor questions and concerns, otherwise looks good.
@@ -6,30 +6,24 @@ | |||
# | |||
appdirs==1.4.3 | |||
backports.os==0.1.1 | |||
boto3==1.10.0 # via fs-s3fs | |||
botocore==1.13.0 # via boto3, s3transfer |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This time all the dependencies of boto3
vanished from this file; the --rebuild
option to the pip-compile commands in Makefile
is likely to fix this.
xblock/core.py
Outdated
@@ -173,6 +173,7 @@ def load_tagged_classes(cls, tag, fail_silently=True): | |||
if tag in class_._class_tags: | |||
yield name, class_ | |||
|
|||
# pylint: disable = pylint: disable=keyword-arg-before-vararg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accidental repetition of content in this comment?
@@ -612,6 +612,7 @@ def load_aside_type(self, aside_type): | |||
""" | |||
return XBlockAside.load_class(aside_type, select=self.select) | |||
|
|||
# pylint: disable = pylint: disable=keyword-arg-before-vararg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same question on the comments in this file.
b94b5c5
to
f616db6
Compare
Adding tox for django20,21,22.
run
make upgrade