Skip to content

Commit ab464ca

Browse files
committed
Removing the version import from the package's root.
Fixes markfinger#19
1 parent cb0d3bc commit ab464ca

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

assembla/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
from .api import *
2-
3-
__VERSION__ = '2.4.0'
1+
from .api import *

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import os
22
from setuptools import setup, find_packages
3-
import assembla
43

54

65
PYPI_RESTRUCTURED_TEXT_INFO = \
@@ -32,7 +31,7 @@
3231

3332
setup(
3433
name = 'assembla',
35-
version = assembla.__VERSION__,
34+
version = '2.4.1',
3635
packages = find_packages(),
3736

3837
install_requires = [

0 commit comments

Comments
 (0)