Skip to content

Commit

Permalink
Merge pull request #3 from oscaro/review
Browse files Browse the repository at this point in the history
Minor changes after code review
  • Loading branch information
maiksprenger committed Mar 6, 2015
2 parents 82a694b + 89029fb commit 76b5ed5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Adyen package for django-oscar
This package provides integration with the `Adyen`_ payment gateway. It is designed to
work seamlessly with the e-commerce framework `django-oscar`_ but can be used without
Oscar.
This extension supports Django 1.6+, Python 3.3+ and Oscar 0.7+.

.. _`Adyen`: http://www.adyen.com/
.. _`django-oscar`: https://github.com/tangentlabs/django-oscar
Expand Down
2 changes: 1 addition & 1 deletion adyen/scaffold.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def get_form_fields_list(self):
except AttributeError:
raise MissingFieldException

# Check for overriden return URL.
# Check for overridden return URL.
return_url = getattr(self, 'return_url', None)
if return_url is not None:
return_url = return_url.replace('PAYMENT_PROVIDER_CODE', Constants.ADYEN)
Expand Down
8 changes: 8 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
bleach==1.4
iptools==0.6.1
requests>=2.0.0,<3.0
freezegun==0.1.18

pytest
pytest-cov
pytest-django
pytest-flakes
pytest-pep8
pytest-sugar
10 changes: 0 additions & 10 deletions requirements_tests.txt

This file was deleted.

3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
include_package_data=True,
install_requires=[
'bleach==1.4',
'django-oscar>=0.7,<0.9',
'freezegun==0.1.18',
'django-oscar>=0.7',
'iptools==0.6.1',
'requests>=2.0,<3.0',
],
Expand Down

0 comments on commit 76b5ed5

Please sign in to comment.