Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 6th, 2012  |  syntax: None  |  size: 1.74 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. pip can't find latest versions of a pypi project
  2. $ pip install django-crowdsourcing==1.1.21
  3. Downloading/unpacking django-crowdsourcing==1.1.21
  4.   Could not find a version that satisfies the requirement django-crowdsourcing==1.1.21 (from versions: )
  5. No distributions matching the version for django-crowdsourcing==1.1.21
  6.        
  7. $ pip install -v --upgrade django-crowdsourcing
  8. Downloading/unpacking django-crowdsourcing
  9.   Using version 1.1.19 (newest of versions: 1.1.19, 1.1.18, 1.1.17, 1.1.16, 1.1.15, 1.1.14, 1.1.13, 1.1.12, 1.1.11, 1.1.10, 1.1.9, 1.1.8, 1.1.7, 1.1.6)
  10.   Downloading django-crowdsourcing-1.1.19.tar.gz (651Kb): 651Kb downloaded
  11.   ...
  12. Successfully installed django-crowdsourcing
  13.        
  14. $ hg tags
  15. tip                              289:8796aae85e34
  16. 1.1.21                           288:2f39596495a7
  17. 1.1.20                           281:fe00699aa3ff
  18. 1.1.19                           278:17392ea8ea54
  19.        
  20. try:
  21.     from setuptools import setup
  22. except ImportError:
  23.     from distutils.core import setup
  24.  
  25. import os
  26. readme_file = os.path.join(os.path.dirname(__file__),
  27.                            'README')
  28. long_description = open(readme_file).read()
  29.  
  30. classifiers = [
  31.     'Development Status :: 4 - Beta',
  32.     'Framework :: Django',
  33.     'License :: OSI Approved :: MIT License']
  34.  
  35.  
  36. setup(name='django-crowdsourcing',
  37.       version='1.1.21',
  38.       classifiers=classifiers,
  39.       description='Django app for collecting and displaying surveys.',
  40.       long_description=long_description,
  41.       author='Jacob Smullyan, Dave Smith',
  42.       author_email='jsmullyan@gmail.com',
  43.       url='http://code.google.com/p/django-crowdsourcing/',
  44.       packages=['crowdsourcing', 'crowdsourcing.templatetags'],
  45.       license='MIT',
  46.      )
  47.        
  48. $ python setup.py register
  49. $ python setup.py sdist upload