-
Notifications
You must be signed in to change notification settings - Fork 106
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
Workaround to fix unique together issues #42
Changes from all commits
2fb3648
f0b768e
1154b58
fd07a9f
9142589
e1d01ca
fa1e9fa
c8f2106
4c64813
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
-r requirements.txt | ||
coverage | ||
django-nose | ||
flake8 | ||
tox |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.2' | ||
__version__ = '0.2.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hmm. wonder how this works since its already at 0.2.1 at https://github.com/miki725/django-rest-framework-bulk/blob/master/rest_framework_bulk/__init__.py#L1. am I missing anything? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and GitHub does not show it as merge conflict. |
||
__author__ = 'Miroslav Shubernetskiy' | ||
|
||
try: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import print_function, unicode_literals |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ basepython = | |
pypy: pypy | ||
pypy3: pypy3 | ||
setenv = | ||
PYTHONPATH = {toxinidir}:{toxinidir}/multinosetests | ||
PYTHONPATH = {toxinidir} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. haha. thanks. copy-paste bites back 😄 |
||
commands = | ||
make install-quite | ||
pip freeze | ||
|
@@ -20,5 +20,21 @@ deps = | |
whitelist_externals = | ||
make | ||
|
||
[testenv:py27-drf2] | ||
deps = | ||
django<1.8 | ||
|
||
[testenv:py34-drf2] | ||
deps = | ||
django<1.8 | ||
|
||
[testenv:pypy-drf2] | ||
deps = | ||
django<1.8 | ||
|
||
[testenv:pypy3-drf2] | ||
deps = | ||
django<1.8 | ||
|
||
[flake8] | ||
max-line-length = 100 |
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.
interesting. guess this change is because django-nose has issues with some newer django versions. any other reason?