Changeset 444

Show
Ignore:
Timestamp:
01/04/06 15:05:27 (3 years ago)
Author:
kevin
Message:

quickstart and requirements changes for 0.8.7

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/0.8/CHANGELOG.txt

    r374 r444  
    22==================== 
    33 
     40.8.7 (January 4, 2006) 
     5----------------------- 
     6 
     7This update primarily solves installation issues and is not required 
     8otherwise. 
     9 
     10* quickstart corrected to properly produce egg-info directories 
     11  (previously, directories could be created with "-" when it should 
     12  have a "_"). Note that setuptools 0.6a9 will warn you if you have 
     13  a - in your egg-info directory name. Just rename the directory, 
     14  and you'll be fine. 
     15* Installation issues that people may have had earlier are resolved 
     16  in this setuptools update. 
     17* version number set to 0.8.7 to reflect that this is considered the 
     18  "stable" version of TurboGears vs. the current 0.9 code in svn. 
     19 
     20*Project Updates* 
     21 
     22* setuptools 0.6a9 
     23* sqlobject 0.7.1dev_r1457 (updated to handle the setuptools change, 
     24  but also includes other bugfixes) 
     25 
    4260.8a6 (December 26, 2005) 
    5 ------------------ 
     27------------------------- 
    628 
    729* Chained validators will now cause an Invalid exception to be raised 
  • branches/0.8/ez_setup.py

    r96 r444  
    1515""" 
    1616import sys 
    17 DEFAULT_VERSION = "0.6a6
     17DEFAULT_VERSION = "0.6a9
    1818DEFAULT_URL     = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3] 
    1919 
     
    3333    'setuptools-0.6a6-py2.3.egg': '7858139f06ed0600b0d9383f36aca24c', 
    3434    'setuptools-0.6a6-py2.4.egg': 'c10d20d29acebce0dc76219dc578d058', 
     35    'setuptools-0.6a7-py2.3.egg': 'cfc4125ddb95c07f9500adc5d6abef6f', 
     36    'setuptools-0.6a7-py2.4.egg': 'c6d62dab4461f71aed943caea89e6f20', 
     37    'setuptools-0.6a8-py2.3.egg': '2f18eaaa3f544f5543ead4a68f3b2e1a', 
     38    'setuptools-0.6a8-py2.4.egg': '799018f2894f14c9f8bcb2b34e69b391', 
     39    'setuptools-0.6a9-py2.3.egg': '8e438ad70438b07b0d8f82cae42b278f', 
     40    'setuptools-0.6a9-py2.4.egg': '8f6e01fc12fb1cd006dc0d6c04327ec1', 
    3541} 
    3642 
  • branches/0.8/setup.py

    r374 r444  
    1515    cmdclass = commands, 
    1616    name="TurboGears", 
    17     version="0.8a6", 
     17    version="0.8.7", 
    1818    author="Kevin Dangoor", 
    1919    author_email="dangoor+turbogears@gmail.com", 
     
    3838    install_requires = ["kid >= 0.8", 
    3939        "CherryPy >= 2.1.0, != 2.1.0-rc2, != 2.1.0-rc1, != 2.1.0-beta", 
    40         "SQLObject >= 0.7", "json-py >= 3.4", 
     40        "SQLObject >= 0.7.1dev_r1457", "json-py >= 3.4", 
    4141        "elementtree >= 1.2.6", 
    4242        "cElementTree >= 1.0.2", "FormEncode >= 0.4", 
  • branches/0.8/turbogears/command/quickstart.py

    r374 r444  
    8585            newpath = newpath.replace("quickstart", self.package) 
    8686            newpath = newpath.replace("projectname", self.package) 
     87            newpath = newpath.replace("ProjectName.egg-info",  
     88                                    "%s.egg-info"  
     89                                    % safename.replace("-", "_")) 
    8790            newpath = newpath.replace("ProjectName", safename) 
    8891            for f in files: 
  • branches/0.8/turbogears/__init__.py

    r374 r444  
    11"TurboGears Front-to-Back Web Framework" 
    2 __version__ = "0.8a6
     2__version__ = "0.8.7
    33__author__ = "Kevin Dangoor" 
    44__email__ = "dangoor+turbogears@gmail.com"