Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyparsing dependency incorrectly includes 2.0, which is py3 only #45

Open
marcus-sonestedt opened this issue Jun 10, 2013 · 0 comments
Open

Comments

@marcus-sonestedt
Copy link

Limiting pyparsing to versions below 2.0 makes setup.py work again on python 2.x, like this:

index 64d4bc3..1a98005 100644
@@ -16,7 +16,7 @@ setup(
license = "GPL",
packages = ["freshen", "freshen.test"],
package_data = {'freshen': ['languages.yml']},

  • install_requires = ['pyparsing>=1.5.0', 'PyYAML', 'nose>=0.11.1'],
  • install_requires = ['pyparsing>=1.5.0, <2.0', 'PyYAML', 'nose>=0.11.1'],
    entry_points = {
    'nose.plugins.0.10': [
    'freshen = freshen.noseplugin:FreshenNosePlugin',
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant