Require at least v0.14.0 of future. Added travis config.#2
Require at least v0.14.0 of future. Added travis config.#2gkovacs merged 2 commits intogkovacs:masterfrom
Conversation
|
Great stuff, thanks @gkovacs! I hope it's ok, but I took the liberty of packaging this up for conda in the Would you like me to add / set you as the maintainer for the conda package? |
|
@ewels You can set yourself as the maintainer, I don't know much about conda packaging |
|
Great stuff. Would either of you mind adding a |
|
Done in #3 👍 |
|
Also, if you want the automated testing @gkovacs then you'll need to enable Travis here: https://travis-ci.org/gkovacs/lz-string-python (then you'll get e-mails telling you if any changes in commits / PRs break the tests on any versions of Python). |
|
Thanks @ewels. |
Hi @gkovacs,
Many thanks for your work on this package, it's a great help to have it work for all versions of Python and available on PyPI.
I ran into a strange bug yesterday where I was getting the following ImportError when including the module:
After scratching my head for a while, I figured out that it was because I had an old version of the
futuremodule installed (v0.13.1). Upgrading tov0.14.0or above seems to solve this import error.To prevent other people running into this problem, I've updated
setup.pyso that the installation requires at leastv0.14.0of thefuturemodule.I've also added a
.travis.ymlfile to enable continuous integration for multiple versions of Python. For an example, see https://travis-ci.org/ewels/lz-string-python (happy to remove this from the PR if you'd rather not have it).Phil