I've put a release candidate for Distutils 1.0.2: http://www.python.org/sigs/distutils-sig/download/ (Available in .tar.gz, .zip, and Win32 .exe formats) Can people please try it out and let me know if there are any problems? If there aren't, in a few days I'll update the Distutils Web page and send out an announcement. People on the Python-checkins list will notice that I haven't made any changes beyond bumping the version number; 1.0.2 is the same code that's in Python 2.1final. --amk
I've put a release candidate for Distutils 1.0.2: http://www.python.org/sigs/distutils-sig/download/
(Available in .tar.gz, .zip, and Win32 .exe formats)
Can people please try it out and let me know if there are any problems? If there aren't, in a few days I'll update the Distutils Web page and send out an announcement.
Some quick notes: - the wininst version (Distutils-1.0.2.win32.exe) crashed with a general protection fault, if I build it myself it seems to work. - The archive-util bug reported by Pete Shinners seems still to be present:
in the file "lib/distutils/archive-util.py" line 103, it creates a ZIP archive with the following command...
ZipFile(zip_filename, "wb", compression=zipfile.ZIP_DEFLATED)
I can take a deeper look later, in the meantime it seems it should not yet be released. BTW: There is a bug in the Python 2.1 release version of Distutils: '1.0.2pre' isn't a valid version number by distutils' own standards. This was of course _my_ fault. Thomas
On Mon, Apr 23, 2001 at 09:36:25AM +0200, Thomas Heller wrote:
- The archive-util bug reported by Pete Shinners seems still to be present:
Aieee! My source tree mustn't have been up to date; I've made a new set of tarballs which really *do* have the current code. This may also explain why the Windows installer crashes, since there were some missing patches for it. Please try again with the new files.
BTW: There is a bug in the Python 2.1 release version of Distutils: '1.0.2pre' isn't a valid version number by distutils' own standards. This was of course _my_ fault.
I don't think this really matters; the setup.py containing the 1.0.2pre version isn't inside the Python 2.1 source tree at all, --amk
BTW: There is a bug in the Python 2.1 release version of Distutils: '1.0.2pre' isn't a valid version number by distutils' own standards. This was of course _my_ fault.
I don't think this really matters; the setup.py containing the 1.0.2pre version isn't inside the Python 2.1 source tree at all,
Not the setup.py, but distutils\__init__.py is: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/python/python/dist/src/Lib/distutils/__init__.py?rev=1.19&content-type=text/vnd.viewc vs-markup """distutils The main package for the Python Module Distribtion Utilities. Normally used from a setup script as from distutils.core import setup setup (...) """ __revision__ = "$Id: __init__.py,v 1.19 2001/03/16 21:00:18 theller Exp $" __version__ = "1.0.2pre" C:\work\chip_test>c:\python21\python.exe Python 2.1 (#15, Apr 16 2001, 18:25:49) [MSC 32 bit (Intel)] on win32 Type "copyright", "credits" or "license" for more information.
import distutils distutils.__version__ '1.0.2pre' ^Z
Thomas
Aieee! My source tree mustn't have been up to date; I've made a new set of tarballs which really *do* have the current code. This may also explain why the Windows installer crashes, since there were some missing patches for it. Please try again with the new files.
It works now (at least the windows installer which I tried). Thomas
participants (2)
-
Andrew Kuchling
-
Thomas Heller