Skip to content

Commit

Permalink
fixed version command
Browse files Browse the repository at this point in the history
  • Loading branch information
edsu committed Nov 28, 2017
1 parent 468c0c9 commit 19d6a87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup

# Also in twarc.py
__version__ = '1.3.0'
__version__ = '1.3.1'

if sys.version_info[0] < 3:
dependencies = open(join('requirements', 'python2.txt')).read().split()
Expand Down
2 changes: 1 addition & 1 deletion twarc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.3.0' # also in setup.py
__version__ = '1.3.1' # also in setup.py

from .client import Twarc
from .command import main
1 change: 1 addition & 0 deletions twarc/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import argparse
import fileinput

from twarc import __version__
from twarc.client import Twarc
from twarc.json2csv import csv, get_headings, get_row

Expand Down

0 comments on commit 19d6a87

Please sign in to comment.