-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
All package updates #4792
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
Merged
Merged
All package updates #4792
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
73074d1
All package updates
humitos 51a1e38
Changes required to upgrade to django-filter 2.0
humitos f95cae3
Use proper HttpRequest object to call a Django view
humitos 3111e36
More upgrades
humitos 05fde12
django-filter upgrade with message
humitos 9c8f500
Compatibility with django-filter<2.0.0
humitos d107dd3
Py2 and Py3 supported on tests
humitos fe47fb7
More updates
humitos f0edd22
Latest updates
humitos b774e08
Regex string escape properly
humitos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,9 +1,8 @@ | ||
-r pip.txt | ||
# http://initd.org/psycopg/docs/install.html#binary-install-from-pypi | ||
psycopg2==2.7.5 --no-binary psycopg2 | ||
psycopg2==2.7.6.1 --no-binary psycopg2 | ||
gunicorn==19.9.0 | ||
pysolr==3.7.0 | ||
django-redis-cache==1.7.1 | ||
django-redis-cache==1.8.1 | ||
|
||
#For resizing images | ||
pillow |
This file contains hidden or 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,4 +1,2 @@ | ||
# Sphinx 1.8 is incompatible with | ||
# the latest version of rstcheck | ||
Sphinx<1.8 | ||
rstcheck==3.3 | ||
Sphinx==1.8.2 | ||
rstcheck==3.3.1 |
This file contains hidden or 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,15 +1,12 @@ | ||
-r pip.txt | ||
# We need these special cases of Python < 3 for Read the Docs | ||
# corporate site. | ||
# We need these special cases of Python < 3 because we run tests with | ||
# Python 2 still | ||
astroid==2.0.4; python_version > '3' | ||
astroid==1.6.4; python_version < '3' | ||
|
||
pylint==2.1.1; python_version > '3' | ||
pylint<2; python_version < '3' | ||
|
||
pylint-django==2.0.2; python_version > '3' | ||
pylint-django==0.11.1; python_version < '3' | ||
|
||
pylint-celery==0.3 | ||
prospector==1.1.2 | ||
prospector==1.1.6.2 | ||
pyflakes==2.0.0 |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
I guess the above comments
are because of this? I think is better to just create an issue, rather than hiding it on the code
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.
We can't upgrade to 2.0.0 yet because we are still running tests with Py2. Once we remove that, we can upgrade without touching the code.
The comments added into the code already prepared it for 2.0.0.
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.
I prefer to prepare the code to work with both versions now and when we upgrade, we can remove the lines that are not needed.