swaroopch / edn_format

EDN reader and writer implementation in Python, using PLY (lex, yacc)
https://www.swaroopch.com/Wrote-an-EDN-format-reader-and-writer-in-Python-11e0924249b181e3af8bdb9af1456373
Other
134 stars 31 forks source link

Less strict versions in requirement.txt #40

Closed wsgharvey closed 7 years ago

wsgharvey commented 7 years ago

Is it neccessary for the requirement pytz==2016.10 to be so strict? It seems to run the test fine with any other version I've tried (between 2011d and 2017.2) so having such a strict requirements.txt seems to me to be just risking causing conflicts.

bfontaine commented 7 years ago

requirements.txt is usually a file targeted at developers; the version you might want to change instead would be in setup.py: https://github.com/swaroopch/edn_format/blob/master/setup.py#L15

wsgharvey commented 7 years ago

Thanks :-)