Closed vgangaprasad closed 5 years ago
For the Travis CI issues, I think dropping 3.3 from the CI config is the right way to go. Could you also add the newer versions? I think we want every version on this list except for 2.7.
Also, thank you so much for this pull request! It's something that's been bothering me for literal years.
CI is passing, so looks good to me 👍 Merging!
Remove the following logic as Python 2 is being retired globally starting in 2020
from setuptools.command.build_py import build_py : : class PasteurizeBuildCommand(build_py): def run(self): call(["pip", "install", "future"]) call(["pasteurize", "./pyramda"]) build_py.run(self) : : cmdclass={ 'build_py': PasteurizeBuildCommand },