memsql / memsql-python

This repository holds some python libraries and plugins designed to be used with MemSQL.
MIT License
62 stars 33 forks source link

Relax version constraints for six and dateutil. #15

Closed jezdez closed 5 years ago

jezdez commented 5 years ago

Replaces #14.

Six and python-dateutil are often depended on in other libaries, which means pinning their version in memsql-python is an issue during installation when using pip and effectively prevents your users to follow best practices to stay up-to-date with updates -- at least for minor releases.

Since six is very stable (maintained by Python core devs) and dateutil has a very clear change history I suggest to:

What do you think?

carlsverre commented 5 years ago

Thanks jezdez, will land today and test everything out with MemSQL proper before shipping a new release. Also, will remove 2.6 compat (totally agree with you there) and setup a nightly test run.

jezdez commented 5 years ago

@carlsverre Much appreciated, thanks!

carlsverre commented 5 years ago

Shipped, thanks!

jezdez commented 5 years ago

Thank you!