aliles / funcsigs

Python function signatures package for Python 2.6, 2.7 and 3.2+
http://pypi.python.org/pypi/funcsigs
Other
48 stars 33 forks source link

Pip install broken #28

Open cserby opened 8 years ago

cserby commented 8 years ago

Currently it is not possible to install funcsigs using pip install.

The problem is caused by this line: extras_require = {

     ':python_version<"2.7"': ['ordereddict'],
  },

error in funcsigs setup command: Invalid environment marker: python_version<"2.7"

Please remove the extra colon from the start of the string.

johanbrandhorst commented 8 years ago

See issue #27