Skip to content

Commit 841c699

Browse files
committed
fix
1 parent d31ffab commit 841c699

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

crudbuilder/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from crudbuilder import signals
1+
from crudbuilder import signals
2+
3+
VERSION = '0.0.9'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import os
22
from setuptools import setup
3+
import crudbuilder
34

45
# Allow setup.py to be run from any path
56
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
67

78
setup(
89
name='django-crudbuilder',
9-
version='0.0.9',
10+
version=crudbuilder.VERSION,
1011
packages=['crudbuilder'],
1112
include_package_data=True,
1213
license='BSD License',

0 commit comments

Comments
 (0)