aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools.txt
diff options
context:
space:
mode:
authorPJ Eby <distutils-sig@python.org>2006-05-12 22:40:05 +0000
committerPJ Eby <distutils-sig@python.org>2006-05-12 22:40:05 +0000
commit16f594d2d958546994ebf77f41317b54dca60af5 (patch)
treece32412e5d623206e511b10db1a95ed2189e7e64 /setuptools.txt
parent27874986d6539405fc971e9cf70563a096ee5b83 (diff)
downloadexternal_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.tar.gz
external_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.tar.bz2
external_python_setuptools-16f594d2d958546994ebf77f41317b54dca60af5.zip
Document 0.6b1 fixes
--HG-- branch : setuptools-0.6 extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/branches/setuptools-0.6%4045985
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-xsetuptools.txt11
1 files changed, 8 insertions, 3 deletions
diff --git a/setuptools.txt b/setuptools.txt
index 343d19f8..b0f6bb5a 100755
--- a/setuptools.txt
+++ b/setuptools.txt
@@ -349,7 +349,7 @@ unless you need the associated ``setuptools`` feature.
has an ``additional_tests()`` function, it is called and the results are
added to the tests to be run. If the named suite is a package, any
submodules and subpackages are recursively added to the overall test suite.
-
+
Specifying this argument enables use of the `test`_ command to run the
specified test suite, e.g. via ``setup.py test``. See the section on the
`test`_ command below for more details.
@@ -1041,7 +1041,7 @@ command; see the section on the `develop`_ command below for more details.
Note that you can also apply setuptools commands to non-setuptools projects,
using commands like this::
-
+
python -c "import setuptools; execfile('setup.py')" develop
That is, you can simply list the normal setup commands and options following
@@ -2454,7 +2454,7 @@ A few important points for writing revision control file finders:
with the absence of needed programs (i.e., ones belonging to the revision
control system itself. It *may*, however, use ``distutils.log.warn()`` to
inform the user of the missing program(s).
-
+
Subclassing ``Command``
-----------------------
@@ -2498,6 +2498,11 @@ XXX
Release Notes/Change History
----------------------------
+0.6b1
+ * Strip ``module`` from the end of compiled extension modules when computing
+ the name of a ``.py`` loader/wrapper. (Python's import machinery ignores
+ this suffix when searching for an extension module.)
+
0.6a11
* Added ``test_loader`` keyword to support custom test loaders