Skip to content

Commit 55ad528

Browse files
authored
Merge pull request #15 from shirishagaddi/develop
Fixed issues and added python3 support
2 parents 3e5f510 + f714a86 commit 55ad528

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

payu/admin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from django.contrib import admin
2-
from models import Transaction, CancelRefundCaptureRequests
2+
from payu.models import Transaction, CancelRefundCaptureRequests
33

44
# Register your models here.
55

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
setup(
2424
name='django-payu',
2525
version='0.2',
26-
packages=['payu'],
26+
packages=['payu', 'payu.migrations'],
2727
include_package_data=True,
2828
description='A simple PayU app for Django.',
2929
long_description=README,
@@ -45,6 +45,6 @@
4545
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4646
],
4747
install_requires=[
48-
"django",
48+
'django>=1.7,<=1.10',
4949
],
5050
)

0 commit comments

Comments
 (0)