Changeset 444
- Timestamp:
- 01/04/06 15:05:27 (3 years ago)
- Files:
-
- branches/0.8/CHANGELOG.txt (modified) (1 diff)
- branches/0.8/ez_setup.py (modified) (2 diffs)
- branches/0.8/setup.py (modified) (2 diffs)
- branches/0.8/turbogears/command/quickstart.py (modified) (1 diff)
- branches/0.8/turbogears/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.8/CHANGELOG.txt
r374 r444 2 2 ==================== 3 3 4 0.8.7 (January 4, 2006) 5 ----------------------- 6 7 This update primarily solves installation issues and is not required 8 otherwise. 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 4 26 0.8a6 (December 26, 2005) 5 ------------------ 27 ------------------------- 6 28 7 29 * Chained validators will now cause an Invalid exception to be raised branches/0.8/ez_setup.py
r96 r444 15 15 """ 16 16 import sys 17 DEFAULT_VERSION = "0.6a 6"17 DEFAULT_VERSION = "0.6a9" 18 18 DEFAULT_URL = "http://cheeseshop.python.org/packages/%s/s/setuptools/" % sys.version[:3] 19 19 … … 33 33 'setuptools-0.6a6-py2.3.egg': '7858139f06ed0600b0d9383f36aca24c', 34 34 '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', 35 41 } 36 42 branches/0.8/setup.py
r374 r444 15 15 cmdclass = commands, 16 16 name="TurboGears", 17 version="0.8 a6",17 version="0.8.7", 18 18 author="Kevin Dangoor", 19 19 author_email="dangoor+turbogears@gmail.com", … … 38 38 install_requires = ["kid >= 0.8", 39 39 "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", 41 41 "elementtree >= 1.2.6", 42 42 "cElementTree >= 1.0.2", "FormEncode >= 0.4", branches/0.8/turbogears/command/quickstart.py
r374 r444 85 85 newpath = newpath.replace("quickstart", self.package) 86 86 newpath = newpath.replace("projectname", self.package) 87 newpath = newpath.replace("ProjectName.egg-info", 88 "%s.egg-info" 89 % safename.replace("-", "_")) 87 90 newpath = newpath.replace("ProjectName", safename) 88 91 for f in files: branches/0.8/turbogears/__init__.py
r374 r444 1 1 "TurboGears Front-to-Back Web Framework" 2 __version__ = "0.8 a6"2 __version__ = "0.8.7" 3 3 __author__ = "Kevin Dangoor" 4 4 __email__ = "dangoor+turbogears@gmail.com"