[Python-checkins] CVS: distutils README.txt,1.18,1.19 CHANGES.txt,1.12,1.13

Greg Ward python-dev@python.org
Thu, 31 Aug 2000 17:59:50 -0700


Update of /cvsroot/python/distutils
In directory slayer.i.sourceforge.net:/tmp/cvs-serv21377

Modified Files:
	README.txt CHANGES.txt 
Log Message:
Update for release 0.9.2.

Index: README.txt
===================================================================
RCS file: /cvsroot/python/distutils/README.txt,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** README.txt	2000/08/15 13:14:04	1.18
--- README.txt	2000/09/01 00:59:48	1.19
***************
*** 1,5 ****
                       Python Distribution Utilities
!                              release 0.9.1
!                             August 15, 2000
  
  
--- 1,5 ----
                       Python Distribution Utilities
!                              release 0.9.2
!                             August 31, 2000
  
  
***************
*** 74,81 ****
  or 6.0.  It also helps to have access to the Windows registry from
  Python; if you have the Win32 extensions (win32api, win32con) installed,
! you're fine.  (Python 2.0 includes the winreg module for this purpose,
! which the Distutils will use if available.)  If not, the Distutils might
! not be able to find the Visual C++ executables, in which case it will
! die horribly when you attempt to build any Python extensions.
  
  There is also experimental support for building extensions under Windows
--- 74,82 ----
  or 6.0.  It also helps to have access to the Windows registry from
  Python; if you have the Win32 extensions (win32api, win32con) installed,
! you're fine.  (Python 1.6 and 2.0 include the winreg module for this
! purpose, which the Distutils will use if available.)  If not, the
! Distutils might not be able to find the Visual C++ executables, in which
! case it will die horribly when you attempt to build any Python
! extensions.
  
  There is also experimental support for building extensions under Windows
***************
*** 112,121 ****
  
  The Distutils have been included with Python since 1.6a1, and Distutils
! 0.9.1 is approximately the code that will be included with Python 2.0b1
! (modulo bug fixes).  Thus, there's generally no need to install the
! Distutils under Python 1.6/2.0.  However, Distutils releases may
! occasionally get ahead of Python releases, so if you really like life on
! the bleeding edge, you might want to install this Distutils release into
! your Python 1.6/2.0 library.
  
  To do this, you'll need to hide the original Distutils package directory
--- 113,122 ----
  
  The Distutils have been included with Python since 1.6a1, and Distutils
! 0.9.2 is the same as the code included with Python 2.0b1 (modulo bug
! fixes).  Thus, there's generally no need to install the Distutils under
! Python 1.6/2.0.  However, Distutils releases may occasionally get ahead
! of Python releases, so if you really like life on the bleeding edge, you
! might want to install this Distutils release into your Python 1.6/2.0
! library.
  
  To do this, you'll need to hide the original Distutils package directory

Index: CHANGES.txt
===================================================================
RCS file: /cvsroot/python/distutils/CHANGES.txt,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** CHANGES.txt	2000/08/15 13:13:44	1.12
--- CHANGES.txt	2000/09/01 00:59:48	1.13
***************
*** 1,2 ****
--- 1,15 ----
+ Release 0.9.2 (31 August, 2000):
+ -------------------------------
+   * fixed bug that broke extension-building under Windows for older
+     setup scripts (not using the new Extension class)
+ 
+   * new version of bdist_wininst command and associated tools: fixes
+     some bugs, produces a smaller exeuctable, and has a nicer GUI
+     (thanks to Thomas Heller)
+ 
+   * added some hooks to 'setup()' to allow some slightly sneaky ways
+     into the Distutils, in addition to the standard "run 'setup()'
+     from a setup script"
+ 
  Release 0.9.1 (15 August, 2000):
  ------------------------------