Skip to content

Commit

Permalink
Merge pull request #12 from danielunderwood/fix/setup-dependencies
Browse files Browse the repository at this point in the history
Fixed: Dependencies installable from setup.py
  • Loading branch information
lehinevych committed Apr 7, 2018
2 parents f7ea95d + 27b09b6 commit d5e261e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions mediawikiapi/__init__.py
@@ -1,7 +1,10 @@
from .config import *
from .mediawikiapi import *
from .exceptions import *
from .language import *
import sys

if not sys.argv[0] == 'pip' and not sys.argv[1] == 'setup.py':
from .config import *
from .mediawikiapi import *
from .exceptions import *
from .language import *

__version__ = "1.1.1"

__version__ = "1.1.2"

0 comments on commit d5e261e

Please sign in to comment.