Commit 6c1cf454 by Serbaf

added necessary production dependency and updated HISTORY

parent 5c99fa21
......@@ -31,3 +31,23 @@ History
a 5.7 MB as a list of 'Tweet's. This could be troublesome with very large
collections in a future if the progression of time was proportional with the
file size (estimation would be 25 minutes for a 5 GB file)
0.4.0 (2019-03-26)
------------------
Since the last release the main improvements have been:
* Raise a custom exception instead of sysexiting when confronted with a wrong
CSV file.
* Change prints for logger messages.
* Modularize the "get_tweets_from_csv" dividing it into 3 functions to provide
more isolated functions. Now this function makes use of
"get_tweet_from_csv_line", which returns a single Tweet object when provided
with two lists representing the contents of a CSV header and one of its
entries. There is also a "raw" alternative of that function, which works
with raw lines and converts them to lists to then call the "non-raw" version.
Version 4.1:
The tweet-manager dependency, necessary for the core functions, has been added
into production (in setup.py).
......@@ -11,7 +11,7 @@ with open('README.rst') as readme_file:
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = ['Click>=6.0', ]
requirements = ['Click>=6.0', 'tweetmanager-serpucga==1.1.4', ]
setup_requirements = []
......@@ -51,6 +51,6 @@ setup(
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/Serbaf/tweet_model',
version='0.4.0',
version='0.4.1',
zip_safe=False,
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment