Skip to content

Commit 4831a19

Browse files
committed
don't use requirements in setup.py to fix released version
1 parent 9962877 commit 4831a19

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

encrypted_fields/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.1.1'
1+
__version__ = '0.1.2'
22

33
from .fields import *

setup.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,6 @@
66
import re
77

88

9-
with open('requirements.txt', 'r') as requirements:
10-
requirements = [line.strip() for line in requirements.readlines()]
11-
12-
139
with open('encrypted_fields/__init__.py', 'r') as init_file:
1410
version = re.search(
1511
'^__version__ = [\'"]([^\'"]+)[\'"]',
@@ -30,5 +26,8 @@
3026
author_email='[email protected]',
3127
packages=['encrypted_fields'],
3228
version=version,
33-
install_requires=requirements,
29+
install_requires=[
30+
'Django>=1.4',
31+
'python-keyczar>=0.71c',
32+
],
3433
)

0 commit comments

Comments
 (0)