Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Update setup.py (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
DvirDukhan authored and Ariel Shtul committed Jan 5, 2020
1 parent 42db33c commit ace2c73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ def read_all(f):
with io.open(f, encoding="utf-8") as I:
return I.read()

requirements = map(str.strip, open("requirements.txt").readlines())
requirements = list(map(str.strip, open("requirements.txt").readlines()))

setup(
name='redistimeseries',
version='0.6.1',
version='0.6.2',
description='RedisTimeSeries Python Client',
long_description=read_all("README.md"),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit ace2c73

Please sign in to comment.