Imported Upstream version 59.4.0
[platform/upstream/python3-setuptools.git] / CHANGES.rst
1 v59.4.0
2 -------
3
4
5 Changes
6 ^^^^^^^
7 * #2893: Restore deprecated support for newlines in the Summary field.
8
9
10 v59.3.0
11 -------
12
13
14 Changes
15 ^^^^^^^
16 * #2902: Merge with pypa/distutils@85db7a41242.
17
18 Misc
19 ^^^^
20 * #2906: In ensure_local_distutils, re-use DistutilsMetaFinder to load the module. Avoids race conditions when _distutils_system_mod is employed.
21
22
23 v59.2.0
24 -------
25
26
27 Changes
28 ^^^^^^^
29 * #2875: Introduce changes from pypa/distutils@514e9d0, including support for overrides from Debian and pkgsrc, unlocking the possibility of making SETUPTOOLS_USE_DISTUTILS=local the default again.
30
31
32 v59.1.1
33 -------
34
35
36 Misc
37 ^^^^
38 * #2885: Fixed errors when encountering LegacyVersions.
39
40
41 v59.1.0
42 -------
43
44
45 Changes
46 ^^^^^^^
47 * #2497: Update packaging to 21.2.
48 * #2877: Back out deprecation of setup_requires and replace instead by a deprecation of setuptools.installer and fetch_build_egg. Now setup_requires is still supported when installed as part of a PEP 517 build, but is deprecated when an unsatisfied requirement is encountered.
49 * #2879: Bump packaging to 21.2.
50
51 Documentation changes
52 ^^^^^^^^^^^^^^^^^^^^^
53 * #2867: PNG/ICO images replaced with SVG in the docs.
54 * #2867: Added support to SVG "favicons" via "in-tree" Sphinx extension.
55
56
57 v59.0.1
58 -------
59
60
61 Misc
62 ^^^^
63 * #2880: Removed URL requirement for ``pytest-virtualenv`` in ``setup.cfg``.
64   PyPI rejects packages with dependencies external to itself.
65   Instead the test dependency was overwritten via ``tox.ini``
66
67
68 v59.0.0
69 -------
70
71
72 Deprecations
73 ^^^^^^^^^^^^
74 * #2856: Support for custom commands that inherit directly from ``distutils`` is
75   **deprecated**. Users should extend classes provided by setuptools instead.
76
77 Breaking Changes
78 ^^^^^^^^^^^^^^^^
79 * #2870: Started failing on invalid inline description with line breaks :class:`ValueError` -- by :user:`webknjaz`
80
81 Changes
82 ^^^^^^^
83 * #2698: Exposed exception classes from ``distutils.errors`` via ``setuptools.errors``.
84 * #2866: Incorporate changes from pypa/distutils@f1b0a2b.
85
86 Documentation changes
87 ^^^^^^^^^^^^^^^^^^^^^
88 * #2227: Added sphinx theme customisations to display the new logo in the sidebar and
89   use its colours as "accent" in the documentation -- by :user:`abravalheri`
90 * #2227: Added new setuptools logo, including editable files and artwork documentation
91   -- by :user:`abravalheri`
92 * #2698: Added mentions to ``setuptools.errors`` as a way of handling custom command
93   errors.
94 * #2698: Added instructions to migrate from ``distutils.commands`` and
95   ``distutils.errors`` in the porting guide.
96 * #2871: Added a note to the docs that it is possible to install
97   ``setup.py``-less projects in editable mode with :doc:`pip v21.1+
98   <pip:index>`, only having ``setup.cfg`` and ``pyproject.toml`` in
99   project root -- by :user:`webknjaz`
100
101
102 v58.5.3
103 -------
104
105
106 Misc
107 ^^^^
108 * #2849: Add fallback for custom ``build_py`` commands inheriting directly from
109   :mod:`distutils`, while still handling ``include_package_data=True`` for
110   ``sdist``.
111
112
113 v58.5.2
114 -------
115
116
117 Misc
118 ^^^^
119 * #2847: Suppress 'setup.py install' warning under bdist_wheel.
120
121
122 v58.5.1
123 -------
124
125
126 Misc
127 ^^^^
128 * #2846: Move PkgResourcesDeprecationWarning above implicitly-called function so that it's in the namespace when version warnings are generated in an environment that contains them.
129
130
131 v58.5.0
132 -------
133
134
135 Changes
136 ^^^^^^^
137 * #1461: Fix inconsistency with ``include_package_data`` and ``packages_data`` in sdist
138   by replacing the loop breaking mechanism between the ``sdist`` and
139   ``egg_info`` commands -- by :user:`abravalheri`
140
141
142 v58.4.0
143 -------
144
145
146 Changes
147 ^^^^^^^
148 * #2497: Officially deprecated PEP 440 non-compliant versions.
149
150 Documentation changes
151 ^^^^^^^^^^^^^^^^^^^^^
152 * #2832: Removed the deprecated ``data_files`` option from the example in the
153   declarative configuration docs -- by :user:`abravalheri`
154 * #2832: Change type of ``data_files`` option from ``dict`` to ``section`` in
155   declarative configuration docs (to match previous example) -- by
156   :user:`abravalheri`
157
158
159 v58.3.0
160 -------
161
162
163 Changes
164 ^^^^^^^
165 * #917: ``setup.py install`` and ``easy_install`` commands are now officially deprecated. Use other standards-based installers (like pip) and builders (like build). Workloads reliant on this behavior should pin to this major version of Setuptools. See `Why you shouldn't invoke setup.py directly <https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html>`_ for more background.
166 * #1988: Deprecated the ``bdist_rpm`` command. Binary packages should be built as wheels instead.
167   -- by :user:`hugovk`
168 * #2785: Replace ``configparser``'s ``readfp`` with ``read_file``, deprecated since Python 3.2.
169   -- by :user:`hugovk`
170 * #2823: Officially deprecated support for ``setup_requires``. Users are encouraged instead to migrate to PEP 518 ``build-system.requires`` in ``pyproject.toml``. Users reliant on ``setup_requires`` should consider pinning to this major version to avoid disruption.
171
172 Misc
173 ^^^^
174 * #2762: Changed codecov.yml to configure the threshold to be lower
175   -- by :user:`tanvimoharir`
176
177
178 v58.2.0
179 -------
180
181
182 Changes
183 ^^^^^^^
184 * #2757: Add windows arm64 launchers for scripts generated by easy_install.
185 * #2800: Added ``--owner`` and ``--group`` options to the ``sdist`` command,
186   for specifying file ownership within the produced tarball (similarly
187   to the corresponding distutils ``sdist`` options).
188
189 Documentation changes
190 ^^^^^^^^^^^^^^^^^^^^^
191 * #2792: Document how the legacy and non-legacy versions are compared, and reference to the `PEP 440 <https://www.python.org/dev/peps/pep-0440/>`_ scheme.
192
193
194 v58.1.0
195 -------
196
197
198 Changes
199 ^^^^^^^
200 * #2796: Merge with pypa/distutils@02e9f65ab0
201
202
203 v58.0.4
204 -------
205
206
207 Misc
208 ^^^^
209 * #2773: Retain case in setup.cfg during sdist.
210
211
212 v58.0.3
213 -------
214
215
216 Misc
217 ^^^^
218 * #2777: Build does not fail fast when ``use_2to3`` is supplied but set to a false value.
219
220
221 v58.0.2
222 -------
223
224
225 Misc
226 ^^^^
227 * #2769: Build now fails fast when ``use_2to3`` is supplied.
228
229
230 v58.0.1
231 -------
232
233
234 Misc
235 ^^^^
236 * #2765: In Distribution.finalize_options, suppress known removed entry points to avoid issues with older Setuptools.
237
238
239 v58.0.0
240 -------
241
242
243 Breaking Changes
244 ^^^^^^^^^^^^^^^^
245 * #2086: Removed support for 2to3 during builds. Projects should port to a unified codebase or pin to an older version of Setuptools using PEP 518 build-requires.
246
247 Documentation changes
248 ^^^^^^^^^^^^^^^^^^^^^
249 * #2746: add python_requires example
250
251
252 v57.5.0
253 -------
254
255
256 Changes
257 ^^^^^^^
258 * #2712: Added implicit globbing support for `[options.data_files]` values.
259
260 Documentation changes
261 ^^^^^^^^^^^^^^^^^^^^^
262 * #2737: fix various syntax and style errors in code snippets in docs
263
264
265 v57.4.0
266 -------
267
268
269 Changes
270 ^^^^^^^
271 * #2722: Added support for ``SETUPTOOLS_EXT_SUFFIX`` environment variable to override the suffix normally detected from the ``sysconfig`` module.
272
273
274 v57.3.0
275 -------
276
277
278 Changes
279 ^^^^^^^
280 * #2465: Documentation is now published using the Furo theme.
281
282
283 v57.2.0
284 -------
285
286
287 Changes
288 ^^^^^^^
289 * #2724: Added detection of Windows ARM64 build environments using the ``VSCMD_ARG_TGT_ARCH`` environment variable.
290
291
292 v57.1.0
293 -------
294
295
296 Changes
297 ^^^^^^^
298 * #2692: Globs are now sorted in 'license_files' restoring reproducibility by eliminating variance from disk order.
299 * #2714: Update to distutils at pypa/distutils@e2627b7.
300 * #2715: Removed reliance on deprecated ssl.match_hostname by removing the ssl support. Now any index operations rely on the native SSL implementation.
301
302 Documentation changes
303 ^^^^^^^^^^^^^^^^^^^^^
304 * #2604: Revamped the backward/cross tool compatibility section to remove
305   some confusion.
306   Add some examples and the version since when ``entry_points`` are
307   supported in declarative configuration.
308   Tried to make the reading flow a bit leaner, gather some information
309   that were a bit dispersed.
310
311
312 v57.0.0
313 -------
314
315
316 Breaking Changes
317 ^^^^^^^^^^^^^^^^
318 * #2645: License files excluded via the ``MANIFEST.in`` but matched by either
319   the ``license_file`` (deprecated) or ``license_files`` options,
320   will be nevertheless included in the source distribution. - by :user:`cdce8p`
321
322 Changes
323 ^^^^^^^
324 * #2628: Write long description in message payload of PKG-INFO file. - by :user:`cdce8p`
325 * #2645: Added ``License-File`` (multiple) to the output package metadata.
326   The field will contain the path of a license file, matched by the
327   ``license_file`` (deprecated) and ``license_files`` options,
328   relative to ``.dist-info``. - by :user:`cdce8p`
329 * #2678: Moved Setuptools' own entry points into declarative config.
330 * #2680: Vendored `more_itertools <https://pypi.org/project/more-itertools>`_ for Setuptools.
331 * #2681: Setuptools own setup.py no longer declares setup_requires, but instead expects wheel to be installed as declared by pyproject.toml.
332
333 Misc
334 ^^^^
335 * #2650: Updated the docs build tooling to support the latest version of
336   Towncrier and show the previews of not-yet-released setuptools versions
337   in the changelog -- :user:`webknjaz`
338
339
340 v56.2.0
341 -------
342
343
344 Changes
345 ^^^^^^^
346 * #2640: Fixed handling of multiline license strings. - by :user:`cdce8p`
347 * #2641: Setuptools will now always try to use the latest supported
348   metadata version for ``PKG-INFO``. - by :user:`cdce8p`
349
350
351 v56.1.0
352 -------
353
354
355 Changes
356 ^^^^^^^
357 * #2653: Incorporated assorted changes from pypa/distutils.
358 * #2657: Adopted docs from distutils.
359 * #2663: Added Visual Studio Express 2017 support -- by :user:`dofuuz`
360
361 Misc
362 ^^^^
363 * #2644: Fixed ``DeprecationWarning`` due to ``threading.Thread.setDaemon`` in tests -- by :user:`tirkarthi`
364 * #2654: Made the changelog generator compatible
365   with Towncrier >= 19.9 -- :user:`webknjaz`
366 * #2664: Relax the deprecation message in the distutils hack.
367
368
369 v56.0.0
370 -------
371
372
373 Deprecations
374 ^^^^^^^^^^^^
375 * #2620: The ``license_file`` option is now marked as deprecated.
376   Use ``license_files`` instead. -- by :user:`cdce8p`
377
378 Breaking Changes
379 ^^^^^^^^^^^^^^^^
380 * #2620: If neither ``license_file`` nor ``license_files`` is specified, the ``sdist``
381   option will now auto-include files that match the following patterns:
382   ``LICEN[CS]E*``, ``COPYING*``, ``NOTICE*``, ``AUTHORS*``.
383   This matches the behavior of ``bdist_wheel``. -- by :user:`cdce8p`
384
385 Changes
386 ^^^^^^^
387 * #2620: The ``license_file`` and ``license_files`` options now support glob patterns. -- by :user:`cdce8p`
388 * #2632: Implemented ``VendorImporter.find_spec()`` method to get rid
389   of ``ImportWarning`` that Python 3.10 emits when only the old-style
390   importer hooks are present -- by :user:`webknjaz`
391
392 Documentation changes
393 ^^^^^^^^^^^^^^^^^^^^^
394 * #2620: Added documentation for the ``license_files`` option. -- by :user:`cdce8p`
395
396
397 v55.0.0
398 -------
399
400
401 Breaking Changes
402 ^^^^^^^^^^^^^^^^
403 * #2566: Remove the deprecated ``bdist_wininst`` command. Binary packages should be built as wheels instead. -- by :user:`hroncok`
404
405
406 v54.2.0
407 -------
408
409
410 Changes
411 ^^^^^^^
412 * #2608: Added informative error message to PEP 517 build failures owing to
413   an empty ``setup.py`` -- by :user:`layday`
414
415
416 v54.1.3
417 -------
418
419 No significant changes.
420
421
422 v54.1.2
423 -------
424
425
426 Misc
427 ^^^^
428 * #2595: Reduced scope of dash deprecation warning to Setuptools/distutils only -- by :user:`melissa-kun-li`
429
430
431 v54.1.1
432 -------
433
434
435 Documentation changes
436 ^^^^^^^^^^^^^^^^^^^^^
437 * #2584: Added ``sphinx-inline-tabs`` extension to allow for comparison of ``setup.py`` and its equivalent ``setup.cfg`` -- by :user:`amy-lei`
438
439 Misc
440 ^^^^
441 * #2592: Made option keys in the ``[metadata]`` section of ``setup.cfg`` case-sensitive. Users having
442   uppercase option spellings will get a warning suggesting to make them to lowercase
443   -- by :user:`melissa-kun-li`
444
445
446 v54.1.0
447 -------
448
449
450 Changes
451 ^^^^^^^
452 * #1608: Removed the conversion of dashes to underscores in the :code:`extras_require` and :code:`data_files` of :code:`setup.cfg` to support the usage of dashes. Method will warn users when they use a dash-separated key which in the future will only allow an underscore. Note: the method performs the dash to underscore conversion to preserve compatibility, but future versions will no longer support it -- by :user:`melissa-kun-li`
453
454
455 v54.0.0
456 -------
457
458
459 Breaking Changes
460 ^^^^^^^^^^^^^^^^
461 * #2582: Simplified build-from-source story by providing bootstrapping metadata in a separate egg-info directory. Build requirements no longer include setuptools itself. Sdist once again includes the pyproject.toml. Project can no longer be installed from source on pip 19.x, but install from source is still supported on pip < 19 and pip >= 20 and install from wheel is still supported with pip >= 9.
462
463 Changes
464 ^^^^^^^
465 * #1932: Handled :code:`AttributeError` by raising :code:`DistutilsSetupError` in :code:`dist.check_specifier()` when specifier is not a string -- by :user:`melissa-kun-li`
466 * #2570: Correctly parse cmdclass in setup.cfg.
467
468 Documentation changes
469 ^^^^^^^^^^^^^^^^^^^^^
470 * #2553: Added userguide example for markers in extras_require -- by :user:`pwoolvett`
471
472
473 v53.1.0
474 -------
475
476
477 Changes
478 ^^^^^^^
479 * #1937: Preserved case-sensitivity of keys in setup.cfg so that entry point names are case-sensitive. Changed sensitivity of configparser. NOTE: Any projects relying on case-insensitivity will need to adapt to accept the original case as published. -- by :user:`melissa-kun-li`
480 * #2573: Fixed error in uploading a Sphinx doc with the :code:`upload_docs` command. An html builder will be used.
481   Note: :code:`upload_docs` is deprecated for PyPi, but is supported for other sites -- by :user:`melissa-kun-li`
482
483
484 v53.0.0
485 -------
486
487
488 Breaking Changes
489 ^^^^^^^^^^^^^^^^
490 * #1527: Removed bootstrap script. Now Setuptools requires pip or another pep517-compliant builder such as 'build' to build. Now Setuptools can be installed from Github main branch.
491
492
493 v52.0.0
494 -------
495
496
497 Breaking Changes
498 ^^^^^^^^^^^^^^^^
499 * #2537: Remove fallback support for fetch_build_eggs using easy_install. Now pip is required for setup_requires to succeed.
500 * #2544: Removed 'easy_install' top-level model (runpy entry point) and 'easy_install' console script.
501 * #2545: Removed support for eggsecutables.
502
503 Changes
504 ^^^^^^^
505 * #2459: Tests now run in parallel via pytest-xdist, completing in about half the time. Special thanks to :user:`webknjaz` for hard work implementing test isolation. To run without parallelization, disable the plugin with ``tox -- -p no:xdist``.
506
507
508 v51.3.3
509 -------
510
511
512 Misc
513 ^^^^
514 * #2539: Fix AttributeError in Description validation.
515
516
517 v51.3.2
518 -------
519
520
521 Misc
522 ^^^^
523 * #1390: Validation of Description field now is more lenient, emitting a warning and mangling the value to be valid (replacing newlines with spaces).
524
525
526 v51.3.1
527 -------
528
529
530 Misc
531 ^^^^
532 * #2536: Reverted tag deduplication handling.
533
534
535 v51.3.0
536 -------
537
538
539 Changes
540 ^^^^^^^
541 * #1390: Newlines in metadata description/Summary now trigger a ValueError.
542 * #2481: Define ``create_module()`` and ``exec_module()`` methods in ``VendorImporter``
543   to get rid of ``ImportWarning`` -- by :user:`hroncok`
544 * #2489: ``pkg_resources`` behavior for zipimport now matches the regular behavior, and finds
545   ``.egg-info`` (previoulsy would only find ``.dist-info``) -- by :user:`thatch`
546 * #2529: Fixed an issue where version tags may be added multiple times
547
548
549 v51.2.0
550 -------
551
552
553 Changes
554 ^^^^^^^
555 * #2493: Use importlib.import_module() rather than the deprecated loader.load_module()
556   in pkg_resources namespace delaration -- by :user:`encukou`
557
558 Documentation changes
559 ^^^^^^^^^^^^^^^^^^^^^
560 * #2525: Fix typo in the document page about entry point. -- by :user:`jtr109`
561
562 Misc
563 ^^^^
564 * #2534: Avoid hitting network during test_easy_install.
565
566
567 v51.1.2
568 -------
569
570
571 Misc
572 ^^^^
573 * #2505: Disable inclusion of package data as it causes 'tests' to be included as data.
574
575
576 v51.1.1
577 -------
578
579
580 Misc
581 ^^^^
582 * #2534: Avoid hitting network during test_virtualenv.test_test_command.
583
584
585 v51.1.0
586 -------
587
588
589 Changes
590 ^^^^^^^
591 * #2486: Project adopts jaraco/skeleton for shared package maintenance.
592
593 Misc
594 ^^^^
595 * #2477: Restore inclusion of rst files in sdist.
596 * #2484: Setuptools has replaced the master branch with the main branch.
597 * #2485: Fixed failing test when pip 20.3+ is present.
598   -- by :user:`yan12125`
599 * #2487: Fix tests with pytest 6.2
600   -- by :user:`yan12125`
601
602
603 v51.0.0
604 -------
605
606
607 Breaking Changes
608 ^^^^^^^^^^^^^^^^
609 * #2435: Require Python 3.6 or later.
610
611 Documentation changes
612 ^^^^^^^^^^^^^^^^^^^^^
613 * #2430: Fixed inconsistent RST title nesting levels caused by #2399
614   -- by :user:`webknjaz`
615 * #2430: Fixed a typo in Sphinx docs that made docs dev section disappear
616   as a result of PR #2426 -- by :user:`webknjaz`
617
618 Misc
619 ^^^^
620 * #2471: Removed the tests that guarantee that the vendored dependencies can be built by distutils.
621
622
623 v50.3.2
624 -------
625
626
627
628 Documentation changes
629 ^^^^^^^^^^^^^^^^^^^^^
630 * #2394: Extended towncrier news template to include change note categories.
631   This allows to see what types of changes a given version introduces
632   -- by :user:`webknjaz`
633 * #2427: Started enforcing strict syntax and reference validation
634   in the Sphinx docs -- by :user:`webknjaz`
635 * #2428: Removed redundant Sphinx ``Makefile`` support -- by :user:`webknjaz`
636
637 Misc
638 ^^^^
639 * #2401: Enabled test results reporting in AppVeyor CI
640   -- by :user:`webknjaz`
641 * #2420: Replace Python 3.9.0 beta with 3.9.0 final on GitHub Actions.
642 * #2421: Python 3.9 Trove classifier got added to the dist metadata
643   -- by :user:`webknjaz`
644
645
646 v50.3.1
647 -------
648
649
650
651 Documentation changes
652 ^^^^^^^^^^^^^^^^^^^^^
653 * #2093: Finalized doc revamp.
654 * #2097: doc: simplify index and group deprecated files
655 * #2102: doc overhaul step 2: break main doc into multiple sections
656 * #2111: doc overhaul step 3: update userguide
657 * #2395: Added a ``:user:`` role to Sphinx config -- by :user:`webknjaz`
658 * #2395: Added an illustrative explanation about the change notes to fragments dir -- by :user:`webknjaz`
659
660 Misc
661 ^^^^
662 * #2379: Travis CI test suite now tests against PPC64.
663 * #2413: Suppress EOF errors (and other exceptions) when importing lib2to3.
664
665
666 v50.3.0
667 -------
668
669
670
671 Changes
672 ^^^^^^^
673 * #2368: In distutils, restore support for monkeypatched CCompiler.spawn per pypa/distutils#15.
674
675
676 v50.2.0
677 -------
678
679
680
681 Changes
682 ^^^^^^^
683 * #2355: When pip is imported as part of a build, leave distutils patched.
684 * #2380: There are some setuptools specific changes in the
685   ``setuptools.command.bdist_rpm`` module that are no longer needed, because
686   they are part of the ``bdist_rpm`` module in distutils in Python
687   3.5.0. Therefore, code was removed from ``setuptools.command.bdist_rpm``.
688
689
690 v50.1.0
691 -------
692
693
694
695 Changes
696 ^^^^^^^
697 * #2350: Setuptools reverts using the included distutils by default. Platform maintainers and system integrators and others are *strongly* encouraged to set ``SETUPTOOLS_USE_DISTUTILS=local`` to help identify and work through the reported issues with distutils adoption, mainly to file issues and pull requests with pypa/distutils such that distutils performs as needed across every supported environment.
698
699
700 v50.0.3
701 -------
702
703
704
705 Misc
706 ^^^^
707 * #2363: Restore link_libpython support on Python 3.7 and earlier (see pypa/distutils#9).
708
709
710 v50.0.2
711 -------
712
713
714
715 Misc
716 ^^^^
717 * #2352: In distutils hack, use absolute import rather than relative to avoid bpo-30876.
718
719
720 v50.0.1
721 -------
722
723
724
725 Misc
726 ^^^^
727 * #2357: Restored Python 3.5 support in distutils.util for missing ``subprocess._optim_args_from_interpreter_flags``.
728 * #2358: Restored AIX support on Python 3.8 and earlier.
729 * #2361: Add Python 3.10 support to _distutils_hack. Get the 'Loader' abstract class
730   from importlib.abc rather than importlib.util.abc (alias removed in Python
731   3.10).
732
733
734 v50.0.0
735 -------
736
737
738
739 Breaking Changes
740 ^^^^^^^^^^^^^^^^
741 * #2232: Once again, Setuptools overrides the stdlib distutils on import. For environments or invocations where this behavior is undesirable, users are provided with a temporary escape hatch. If the environment variable ``SETUPTOOLS_USE_DISTUTILS`` is set to ``stdlib``, Setuptools will fall back to the legacy behavior. Use of this escape hatch is discouraged, but it is provided to ease the transition while proper fixes for edge cases can be addressed.
742
743 Changes
744 ^^^^^^^
745 * #2334: In MSVC module, refine text in error message.
746
747
748 v49.6.0
749 -------
750
751
752
753 Changes
754 ^^^^^^^
755 * #2129: In pkg_resources, no longer detect any pathname ending in .egg as a Python egg. Now the path must be an unpacked egg or a zip file.
756
757
758 v49.5.0
759 -------
760
761
762
763 Changes
764 ^^^^^^^
765 * #2306: When running as a PEP 517 backend, setuptools does not try to install
766   ``setup_requires`` itself. They are reported as build requirements for the
767   frontend to install.
768
769
770 v49.4.0
771 -------
772
773
774
775 Changes
776 ^^^^^^^
777 * #2310: Updated vendored packaging version to 20.4.
778
779
780 v49.3.2
781 -------
782
783
784
785 Documentation changes
786 ^^^^^^^^^^^^^^^^^^^^^
787 * #2300: Improve the ``safe_version`` function documentation
788
789 Misc
790 ^^^^
791 * #2297: Once again, in stubs prefer exec_module to the deprecated load_module.
792
793
794 v49.3.1
795 -------
796
797
798
799 Changes
800 ^^^^^^^
801 * #2316: Removed warning when ``distutils`` is imported before ``setuptools`` when ``distutils`` replacement is not enabled.
802
803
804 v49.3.0
805 -------
806
807
808
809 Changes
810 ^^^^^^^
811 * #2259: Setuptools now provides a .pth file (except for editable installs of setuptools) to the target environment to ensure that when enabled, the setuptools-provided distutils is preferred before setuptools has been imported (and even if setuptools is never imported). Honors the SETUPTOOLS_USE_DISTUTILS environment variable.
812
813
814 v49.2.1
815 -------
816
817
818
819 Misc
820 ^^^^
821 * #2257: Fixed two flaws in distutils._msvccompiler.MSVCCompiler.spawn.
822
823
824 v49.2.0
825 -------
826
827
828
829 Changes
830 ^^^^^^^
831 * #2230: Now warn the user when setuptools is imported after distutils modules have been loaded (exempting PyPy for 3.6), directing the users of packages to import setuptools first.
832
833
834 v49.1.3
835 -------
836
837
838
839 Misc
840 ^^^^
841 * #2212: (Distutils) Allow spawn to accept environment. Avoid monkey-patching global state.
842 * #2249: Fix extension loading technique in stubs.
843
844
845 v49.1.2
846 -------
847
848
849
850 Changes
851 ^^^^^^^
852 * #2232: In preparation for re-enabling a local copy of distutils, Setuptools now honors an environment variable, SETUPTOOLS_USE_DISTUTILS. If set to 'stdlib' (current default), distutils will be used from the standard library. If set to 'local' (default in a imminent backward-incompatible release), the local copy of distutils will be used.
853
854
855 v49.1.1
856 -------
857
858
859
860 Misc
861 ^^^^
862 * #2094: Removed pkg_resources.py2_warn module, which is no longer reachable.
863
864
865 v49.0.1
866 -------
867
868
869
870 Misc
871 ^^^^
872 * #2228: Applied fix for pypa/distutils#3, restoring expectation that spawn will raise a DistutilsExecError when attempting to execute a missing file.
873
874
875 v49.1.0
876 -------
877
878
879
880 Changes
881 ^^^^^^^
882 * #2228: Disabled distutils adoption for now while emergent issues are addressed.
883
884
885 v49.0.0
886 -------
887
888
889
890 Breaking Changes
891 ^^^^^^^^^^^^^^^^
892 * #2165: Setuptools no longer installs a site.py file during easy_install or develop installs. As a result, .eggs on PYTHONPATH will no longer take precedence over other packages on sys.path. If this issue affects your production environment, please reach out to the maintainers at #2165.
893
894 Changes
895 ^^^^^^^
896 * #2137: Removed (private) pkg_resources.RequirementParseError, now replaced by packaging.requirements.InvalidRequirement. Kept the name for compatibility, but users should catch InvalidRequirement instead.
897 * #2180: Update vendored packaging in pkg_resources to 19.2.
898
899 Misc
900 ^^^^
901 * #2199: Fix exception causes all over the codebase by using ``raise new_exception from old_exception``
902
903
904 v48.0.0
905 -------
906
907
908
909 Breaking Changes
910 ^^^^^^^^^^^^^^^^
911 * #2143: Setuptools adopts distutils from the Python 3.9 standard library and no longer depends on distutils in the standard library. When importing ``setuptools`` or ``setuptools.distutils_patch``, Setuptools will expose its bundled version as a top-level ``distutils`` package (and unload any previously-imported top-level distutils package), retaining the expectation that ``distutils``' objects are actually Setuptools objects.
912   To avoid getting any legacy behavior from the standard library, projects are advised to always "import setuptools" prior to importing anything from distutils. This behavior happens by default when using ``pip install`` or ``pep517.build``. Workflows that rely on ``setup.py (anything)`` will need to first ensure setuptools is imported. One way to achieve this behavior without modifying code is to invoke Python thus: ``python -c "import setuptools; exec(open('setup.py').read())" (anything)``.
913
914
915 v47.3.2
916 -------
917
918
919
920 Misc
921 ^^^^
922 * #2071: Replaced references to the deprecated imp package with references to importlib
923
924
925 v47.3.1
926 -------
927
928
929
930 Misc
931 ^^^^
932 * #1973: Removed ``pkg_resources.py31compat.makedirs`` in favor of the stdlib. Use ``os.makedirs()`` instead.
933 * #2198: Restore ``__requires__`` directive in easy-install wrapper scripts.
934
935
936 v47.3.0
937 -------
938
939
940
941 Changes
942 ^^^^^^^
943 * #2197: Console script wrapper for editable installs now has a unified template and honors importlib_metadata if present for faster script execution on older Pythons.
944
945 Misc
946 ^^^^
947 * #2195: Fix broken entry points generated by easy-install (pip editable installs).
948
949
950 v47.2.0
951 -------
952
953
954
955 Changes
956 ^^^^^^^
957 * #2194: Editable-installed entry points now load significantly faster on Python versions 3.8+.
958 * #1471: Incidentally fixed by #2194 on Python 3.8 or when importlib_metadata is present.
959
960
961 v47.1.1
962 -------
963
964
965
966 Documentation changes
967 ^^^^^^^^^^^^^^^^^^^^^
968 * #2156: Update mailing list pointer in developer docs
969
970 Incorporate changes from v44.1.1:
971 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
972
973 * #2158: Avoid loading working set during ``Distribution.finalize_options`` prior to invoking ``_install_setup_requires``, broken since v42.0.0.
974
975
976 v44.1.1
977 -------
978
979
980
981 Misc
982 ^^^^
983 * #2158: Avoid loading working set during ``Distribution.finalize_options`` prior to invoking ``_install_setup_requires``, broken since v42.0.0.
984
985
986 v47.1.0
987 -------
988
989
990
991 Changes
992 ^^^^^^^
993 * #2070: In wheel-to-egg conversion, use simple pkg_resources-style namespace declaration for packages that declare namespace_packages.
994
995
996 v47.0.0
997 -------
998
999
1000
1001 Breaking Changes
1002 ^^^^^^^^^^^^^^^^
1003 * #2094: Setuptools now actively crashes under Python 2. Python 3.5 or later is required. Users of Python 2 should use ``setuptools<45``.
1004
1005 Changes
1006 ^^^^^^^
1007 * #1700: Document all supported keywords by migrating the ones from distutils.
1008
1009
1010 v46.4.0
1011 -------
1012
1013
1014
1015 Changes
1016 ^^^^^^^
1017 * #1753: ``attr:`` now extracts variables through rudimentary examination of the AST,
1018   thereby supporting modules with third-party imports. If examining the AST
1019   fails to find the variable, ``attr:`` falls back to the old behavior of
1020   importing the module. Works on Python 3 only.
1021
1022
1023 v46.3.1
1024 -------
1025
1026 No significant changes.
1027
1028
1029 v46.3.0
1030 -------
1031
1032
1033
1034 Changes
1035 ^^^^^^^
1036 * #2089: Package index functionality no longer attempts to remove an md5 fragment from the index URL. This functionality, added for distribute #163 is no longer relevant.
1037
1038 Misc
1039 ^^^^
1040 * #2041: Preserve file modes during pkg files copying, but clear read only flag for target afterwards.
1041 * #2105: Filter ``2to3`` deprecation warnings from ``TestDevelop.test_2to3_user_mode``.
1042
1043
1044 v46.2.0
1045 -------
1046
1047
1048
1049 Changes
1050 ^^^^^^^
1051 * #2040: Deprecated the ``bdist_wininst`` command. Binary packages should be built as wheels instead.
1052 * #2062: Change 'Mac OS X' to 'macOS' in code.
1053 * #2075: Stop recognizing files ending with ``.dist-info`` as distribution metadata.
1054 * #2086: Deprecate 'use_2to3' functionality. Packagers are encouraged to use single-source solutions or build tool chains to manage conversions outside of setuptools.
1055
1056 Documentation changes
1057 ^^^^^^^^^^^^^^^^^^^^^
1058 * #1698: Added documentation for ``build_meta`` (a bare minimum, not completed).
1059
1060 Misc
1061 ^^^^
1062 * #2082: Filter ``lib2to3`` ``PendingDeprecationWarning`` and ``DeprecationWarning`` in tests,
1063   because ``lib2to3`` is `deprecated in Python 3.9 <https://bugs.python.org/issue40360>`_.
1064
1065
1066 v46.1.3
1067 -------
1068
1069 No significant changes.
1070
1071
1072 v46.1.2
1073 -------
1074
1075
1076
1077 Misc
1078 ^^^^
1079 * #1458: Added template for reporting Python 2 incompatibilities.
1080
1081
1082 v46.1.1
1083 -------
1084
1085 No significant changes.
1086
1087
1088 v46.1.0
1089 -------
1090
1091
1092
1093 Changes
1094 ^^^^^^^
1095 * #308: Allow version number normalization to be bypassed by wrapping in a 'setuptools.sic()' call.
1096 * #1424: Prevent keeping files mode for package_data build. It may break a build if user's package data has read only flag.
1097 * #1431: In ``easy_install.check_site_dir``, ensure the installation directory exists.
1098 * #1563: In ``pkg_resources`` prefer ``find_spec`` (PEP 451) to ``find_module``.
1099
1100 Incorporate changes from v44.1.0:
1101 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1102
1103 * #1704: Set sys.argv[0] in setup script run by build_meta.__legacy__
1104 * #1959: Fix for Python 4: replace unsafe six.PY3 with six.PY2
1105 * #1994: Fixed a bug in the "setuptools.finalize_distribution_options" hook that lead to ignoring the order attribute of entry points managed by this hook.
1106
1107
1108 v44.1.0
1109 -------
1110
1111
1112
1113 Changes
1114 ^^^^^^^
1115 * #1704: Set sys.argv[0] in setup script run by build_meta.__legacy__
1116 * #1959: Fix for Python 4: replace unsafe six.PY3 with six.PY2
1117 * #1994: Fixed a bug in the "setuptools.finalize_distribution_options" hook that lead to ignoring the order attribute of entry points managed by this hook.
1118
1119
1120 v46.0.0
1121 -------
1122
1123
1124
1125 Breaking Changes
1126 ^^^^^^^^^^^^^^^^
1127 * #65: Once again as in 3.0, removed the Features feature.
1128
1129 Changes
1130 ^^^^^^^
1131 * #1890: Fix vendored dependencies so importing ``setuptools.extern.some_module`` gives the same object as ``setuptools._vendor.some_module``. This makes Metadata picklable again.
1132 * #1899: Test suite now fails on warnings.
1133
1134 Documentation changes
1135 ^^^^^^^^^^^^^^^^^^^^^
1136 * #2011: Fix broken link to distutils docs on package_data
1137
1138 Misc
1139 ^^^^
1140 * #1991: Include pkg_resources test data in sdist, so tests can be executed from it.
1141
1142
1143 v45.3.0
1144 -------
1145
1146
1147
1148 Changes
1149 ^^^^^^^
1150 * #1557: Deprecated eggsecutable scripts and updated docs.
1151 * #1904: Update msvc.py to use CPython 3.8.0 mechanism to find msvc 14+
1152
1153
1154 v45.2.0
1155 -------
1156
1157
1158
1159 Changes
1160 ^^^^^^^
1161 * #1905: Fixed defect in _imp, introduced in 41.6.0 when the 'tests' directory is not present.
1162 * #1941: Improve editable installs with PEP 518 build isolation:
1163
1164   * The ``--user`` option is now always available. A warning is issued if the user site directory is not available.
1165   * The error shown when the install directory is not in ``PYTHONPATH`` has been turned into a warning.
1166 * #1981: Setuptools now declares its ``tests`` and ``docs`` dependencies in metadata (extras).
1167 * #1985: Add support for installing scripts in environments where bdist_wininst is missing (i.e. Python 3.9).
1168
1169 Misc
1170 ^^^^
1171 * #1968: Add flake8-2020 to check for misuse of sys.version or sys.version_info.
1172
1173
1174 v45.1.0
1175 -------
1176
1177
1178
1179 Changes
1180 ^^^^^^^
1181 * #1458: Add minimum sunset date and preamble to Python 2 warning.
1182 * #1704: Set sys.argv[0] in setup script run by build_meta.__legacy__
1183 * #1974: Add Python 3 Only Trove Classifier and remove universal wheel declaration for more complete transition from Python 2.
1184
1185
1186 v45.0.0
1187 -------
1188
1189
1190
1191 Breaking Changes
1192 ^^^^^^^^^^^^^^^^
1193 * #1458: Drop support for Python 2. Setuptools now requires Python 3.5 or later. Install setuptools using pip >=9 or pin to Setuptools <45 to maintain 2.7 support.
1194
1195 Changes
1196 ^^^^^^^
1197 * #1959: Fix for Python 4: replace unsafe six.PY3 with six.PY2
1198
1199
1200 v44.0.0
1201 -------
1202
1203
1204
1205 Breaking Changes
1206 ^^^^^^^^^^^^^^^^
1207 * #1908: Drop support for Python 3.4.
1208
1209
1210 v43.0.0
1211 -------
1212
1213
1214
1215 Breaking Changes
1216 ^^^^^^^^^^^^^^^^
1217 * #1634: Include ``pyproject.toml`` in source distribution by default. Projects relying on the previous behavior where ``pyproject.toml`` was excluded by default should stop relying on that behavior or add ``exclude pyproject.toml`` to their MANIFEST.in file.
1218
1219 Changes
1220 ^^^^^^^
1221 * #1927: Setuptools once again declares 'setuptools' in the ``build-system.requires`` and adds PEP 517 build support by declaring itself as the ``build-backend``. It additionally specifies ``build-system.backend-path`` to rely on itself for those builders that support it.
1222
1223
1224 v42.0.2
1225 -------
1226
1227 Changes
1228 ^^^^^^^
1229
1230 * #1921: Fix support for easy_install's ``find-links`` option in ``setup.cfg``.
1231 * #1922: Build dependencies (setup_requires and tests_require) now install transitive dependencies indicated by extras.
1232
1233
1234 v42.0.1
1235 -------
1236
1237
1238
1239 Changes
1240 ^^^^^^^
1241 * #1918: Fix regression in handling wheels compatibility tags.
1242
1243
1244 v42.0.0
1245 -------
1246
1247
1248
1249 Breaking Changes
1250 ^^^^^^^^^^^^^^^^
1251 * #1830, #1909: Mark the easy_install script and setuptools command as deprecated, and use `pip <https://pip.pypa.io/en/stable/>`_ when available to fetch/build wheels for missing ``setup_requires``/``tests_require`` requirements, with the following differences in behavior:
1252    * support for ``python_requires``
1253    * better support for wheels (proper handling of priority with respect to PEP 425 tags)
1254    * PEP 517/518 support
1255    * eggs are not supported
1256    * no support for the ``allow_hosts`` easy_install option (``index_url``/``find_links`` are still honored)
1257    * pip environment variables are honored (and take precedence over easy_install options)
1258 * #1898: Removed the "upload" and "register" commands in favor of `twine <https://pypi.org/p/twine>`_.
1259
1260 Changes
1261 ^^^^^^^
1262 * #1767: Add support for the ``license_files`` option in ``setup.cfg`` to automatically
1263   include multiple license files in a source distribution.
1264 * #1829: Update handling of wheels compatibility tags:
1265   * add support for manylinux2010
1266   * fix use of removed 'm' ABI flag in Python 3.8 on Windows
1267 * #1861: Fix empty namespace package installation from wheel.
1268 * #1877: Setuptools now exposes a new entry point hook "setuptools.finalize_distribution_options", enabling plugins like `setuptools_scm <https://pypi.org/project/setuptools_scm>`_ to configure options on the distribution at finalization time.
1269
1270
1271 v41.6.0
1272 -------
1273
1274
1275
1276 Changes
1277 ^^^^^^^
1278 * #479: Replace usage of deprecated ``imp`` module with local re-implementation in ``setuptools._imp``.
1279
1280
1281 v41.5.1
1282 -------
1283
1284
1285
1286 Changes
1287 ^^^^^^^
1288 * #1891: Fix code for detecting Visual Studio's version on Windows under Python 2.
1289
1290
1291 v41.5.0
1292 -------
1293
1294
1295
1296 Changes
1297 ^^^^^^^
1298 * #1811: Improve Visual C++ 14.X support, mainly for Visual Studio 2017 and 2019.
1299 * #1814: Fix ``pkg_resources.Requirement`` hash/equality implementation: take PEP 508 direct URL into account.
1300 * #1824: Fix tests when running under ``python3.10``.
1301 * #1878: Formally deprecated the ``test`` command, with the recommendation that users migrate to ``tox``.
1302
1303 Documentation changes
1304 ^^^^^^^^^^^^^^^^^^^^^
1305 * #1860: Update documentation to mention the egg format is not supported by pip and dependency links support was dropped starting with pip 19.0.
1306 * #1862: Drop ez_setup documentation: deprecated for some time (last updated in 2016), and still relying on easy_install (deprecated too).
1307 * #1868: Drop most documentation references to (deprecated) EasyInstall.
1308 * #1884: Added a trove classifier to document support for Python 3.8.
1309
1310 Misc
1311 ^^^^
1312 * #1886: Added Python 3.8 release to the Travis test matrix.
1313
1314
1315 v41.4.0
1316 -------
1317
1318
1319
1320 Changes
1321 ^^^^^^^
1322 * #1847: In declarative config, now traps errors when invalid ``python_requires`` values are supplied.
1323
1324
1325 v41.3.0
1326 -------
1327
1328
1329
1330 Changes
1331 ^^^^^^^
1332 * #1690: When storing extras, rely on OrderedSet to retain order of extras as indicated by the packager, which will also be deterministic on Python 2.7 (with PYTHONHASHSEED unset) and Python 3.6+.
1333
1334 Misc
1335 ^^^^
1336 * #1858: Fixed failing integration test triggered by 'long_description_content_type' in packaging.
1337
1338
1339 v41.2.0
1340 -------
1341
1342
1343
1344 Changes
1345 ^^^^^^^
1346 * #479: Remove some usage of the deprecated ``imp`` module.
1347
1348 Misc
1349 ^^^^
1350 * #1565: Changed html_sidebars from string to list of string as per
1351   https://www.sphinx-doc.org/en/master/changes.html#id58
1352
1353
1354 v41.1.0
1355 -------
1356
1357
1358
1359 Misc
1360 ^^^^
1361 * #1697: Moved most of the constants from setup.py to setup.cfg
1362 * #1749: Fixed issue with the PEP 517 backend where building a source distribution would fail if any tarball existed in the destination directory.
1363 * #1750: Fixed an issue with PEP 517 backend where wheel builds would fail if the destination directory did not already exist.
1364 * #1756: Force metadata-version >= 1.2. when project urls are present.
1365 * #1769: Improve ``package_data`` check: ensure the dictionary values are lists/tuples of strings.
1366 * #1788: Changed compatibility fallback logic for ``html.unescape`` to avoid accessing ``HTMLParser.unescape`` when not necessary. ``HTMLParser.unescape`` is deprecated and will be removed in Python 3.9.
1367 * #1790: Added the file path to the error message when a ``UnicodeDecodeError`` occurs while reading a metadata file.
1368
1369 Documentation changes
1370 ^^^^^^^^^^^^^^^^^^^^^
1371 * #1776: Use license classifiers rather than the license field.
1372
1373
1374 v41.0.1
1375 -------
1376
1377
1378
1379 Changes
1380 ^^^^^^^
1381 * #1671: Fixed issue with the PEP 517 backend that prevented building a wheel when the ``dist/`` directory contained existing ``.whl`` files.
1382 * #1709: In test.paths_on_python_path, avoid adding unnecessary duplicates to the PYTHONPATH.
1383 * #1741: In package_index, now honor "current directory" during a checkout of git and hg repositories under Windows
1384
1385
1386 v41.0.0
1387 -------
1388
1389
1390
1391 Breaking Changes
1392 ^^^^^^^^^^^^^^^^
1393 * #1735: When parsing setup.cfg files, setuptools now requires the files to be encoded as UTF-8. Any other encoding will lead to a UnicodeDecodeError. This change removes support for specifying an encoding using a 'coding: ' directive in the header of the file, a feature that was introduces in 40.7. Given the recent release of the aforementioned feature, it is assumed that few if any projects are utilizing the feature to specify an encoding other than UTF-8.
1394
1395
1396 v40.9.0
1397 -------
1398
1399
1400
1401 Changes
1402 ^^^^^^^
1403 * #1675: Added support for ``setup.cfg``-only projects when using the ``setuptools.build_meta`` backend. Projects that have enabled PEP 517 no longer need to have a ``setup.py`` and can use the purely declarative ``setup.cfg`` configuration file instead.
1404 * #1720: Added support for ``pkg_resources.parse_requirements``-style requirements in ``setup_requires`` when ``setup.py`` is invoked from the ``setuptools.build_meta`` build backend.
1405 * #1664: Added the path to the ``PKG-INFO`` or ``METADATA`` file in the exception
1406   text when the ``Version:`` header can't be found.
1407
1408 Documentation changes
1409 ^^^^^^^^^^^^^^^^^^^^^
1410 * #1705: Removed some placeholder documentation sections referring to deprecated features.
1411
1412
1413 v40.8.0
1414 -------
1415
1416
1417
1418 Changes
1419 ^^^^^^^
1420 * #1652: Added the ``build_meta:__legacy__`` backend, a "compatibility mode" PEP 517 backend that can be used as the default when ``build-backend`` is left unspecified in ``pyproject.toml``.
1421 * #1635: Resource paths are passed to ``pkg_resources.resource_string`` and similar no longer accept paths that traverse parents, that begin with a leading ``/``. Violations of this expectation raise DeprecationWarnings and will become errors. Additionally, any paths that are absolute on Windows are strictly disallowed and will raise ValueErrors.
1422 * #1536: ``setuptools`` will now automatically include licenses if ``setup.cfg`` contains a ``license_file`` attribute, unless this file is manually excluded inside ``MANIFEST.in``.
1423
1424
1425 v40.7.3
1426 -------
1427
1428
1429
1430 Changes
1431 ^^^^^^^
1432 * #1670: In package_index, revert to using a copy of splituser from Python 3.8. Attempts to use ``urllib.parse.urlparse`` led to problems as reported in #1663 and #1668. This change serves as an alternative to #1499 and fixes #1668.
1433
1434
1435 v40.7.2
1436 -------
1437
1438
1439
1440 Changes
1441 ^^^^^^^
1442 * #1666: Restore port in URL handling in package_index.
1443
1444
1445 v40.7.1
1446 -------
1447
1448
1449
1450 Changes
1451 ^^^^^^^
1452 * #1660: On Python 2, when reading config files, downcast options from text to bytes to satisfy distutils expectations.
1453
1454
1455 v40.7.0
1456 -------
1457
1458
1459
1460 Breaking Changes
1461 ^^^^^^^^^^^^^^^^
1462 * #1551: File inputs for the ``license`` field in ``setup.cfg`` files now explicitly raise an error.
1463
1464 Changes
1465 ^^^^^^^
1466 * #1180: Add support for non-ASCII in setup.cfg (#1062). Add support for native strings on some parameters (#1136).
1467 * #1499: ``setuptools.package_index`` no longer relies on the deprecated ``urllib.parse.splituser`` per Python #27485.
1468 * #1544: Added tests for PackageIndex.download (for git URLs).
1469 * #1625: In PEP 517 build_meta builder, ensure that sdists are built as gztar per the spec.
1470
1471
1472 v40.6.3
1473 -------
1474
1475
1476
1477 Changes
1478 ^^^^^^^
1479 * #1594: PEP 517 backend no longer declares setuptools as a dependency as it can be assumed.
1480
1481
1482 v40.6.2
1483 -------
1484
1485
1486
1487 Changes
1488 ^^^^^^^
1489 * #1592: Fix invalid dependency on external six module (instead of vendored version).
1490
1491
1492 v40.6.1
1493 -------
1494
1495
1496
1497 Changes
1498 ^^^^^^^
1499 * #1590: Fixed regression where packages without ``author`` or ``author_email`` fields generated malformed package metadata.
1500
1501
1502 v40.6.0
1503 -------
1504
1505
1506
1507 Deprecations
1508 ^^^^^^^^^^^^
1509 * #1541: Officially deprecated the ``requires`` parameter in ``setup()``.
1510
1511 Changes
1512 ^^^^^^^
1513 * #1519: In ``pkg_resources.normalize_path``, additional path normalization is now performed to ensure path values to a directory is always the same, preventing false positives when checking scripts have a consistent prefix to set up on Windows.
1514 * #1545: Changed the warning class of all deprecation warnings; deprecation warning classes are no longer derived from ``DeprecationWarning`` and are thus visible by default.
1515 * #1554: ``build_meta.build_sdist`` now includes ``setup.py`` in source distributions by default.
1516 * #1576: Started monkey-patching ``get_metadata_version`` and ``read_pkg_file`` onto ``distutils.DistributionMetadata`` to retain the correct version on the ``PKG-INFO`` file in the (deprecated) ``upload`` command.
1517
1518 Documentation changes
1519 ^^^^^^^^^^^^^^^^^^^^^
1520 * #1395: Changed Pyrex references to Cython in the documentation.
1521 * #1456: Documented that the ``rpmbuild`` packages is required for the ``bdist_rpm`` command.
1522 * #1537: Documented how to use ``setup.cfg`` for ``src/ layouts``
1523 * #1539: Added minimum version column in ``setup.cfg`` metadata table.
1524 * #1552: Fixed a minor typo in the python 2/3 compatibility documentation.
1525 * #1553: Updated installation instructions to point to ``pip install`` instead of ``ez_setup.py``.
1526 * #1560: Updated ``setuptools`` distribution documentation to remove some outdated information.
1527 * #1564: Documented ``setup.cfg`` minimum version for version and project_urls.
1528
1529 Misc
1530 ^^^^
1531 * #1533: Restricted the ``recursive-include setuptools/_vendor`` to contain only .py and .txt files.
1532 * #1572: Added the ``concurrent.futures`` backport ``futures`` to the Python 2.7 test suite requirements.
1533
1534
1535 v40.5.0
1536 -------
1537
1538
1539
1540 Changes
1541 ^^^^^^^
1542 * #1335: In ``pkg_resources.normalize_path``, fix issue on Cygwin when cwd contains symlinks.
1543 * #1502: Deprecated support for downloads from Subversion in package_index/easy_install.
1544 * #1517: Dropped use of six.u in favor of ``u""`` literals.
1545 * #1520: Added support for ``data_files`` in ``setup.cfg``.
1546
1547 Documentation changes
1548 ^^^^^^^^^^^^^^^^^^^^^
1549 * #1525: Fixed rendering of the deprecation warning in easy_install doc.
1550
1551
1552 v40.4.3
1553 -------
1554
1555
1556
1557 Changes
1558 ^^^^^^^
1559 * #1480: Bump vendored pyparsing in pkg_resources to 2.2.1.
1560
1561
1562 v40.4.2
1563 -------
1564
1565
1566
1567 Misc
1568 ^^^^
1569 * #1497: Updated gitignore in repo.
1570
1571
1572 v40.4.1
1573 -------
1574
1575
1576
1577 Changes
1578 ^^^^^^^
1579 * #1480: Bump vendored pyparsing to 2.2.1.
1580
1581
1582 v40.4.0
1583 -------
1584
1585
1586
1587 Changes
1588 ^^^^^^^
1589 * #1481: Join the sdist ``--dist-dir`` and the ``build_meta`` sdist directory argument to point to the same target (meaning the build frontend no longer needs to clean manually the dist dir to avoid multiple sdist presence, and setuptools no longer needs to handle conflicts between the two).
1590
1591
1592 v40.3.0
1593 -------
1594
1595
1596
1597 Changes
1598 ^^^^^^^
1599 * #1402: Fixed a bug with namespace packages under Python 3.6 when one package in
1600   current directory hides another which is installed.
1601 * #1427: Set timestamp of ``.egg-info`` directory whenever ``egg_info`` command is run.
1602 * #1474: ``build_meta.get_requires_for_build_sdist`` now does not include the ``wheel`` package anymore.
1603 * #1486: Suppress warnings in pkg_resources.handle_ns.
1604
1605 Misc
1606 ^^^^
1607 * #1479: Remove internal use of six.binary_type.
1608
1609
1610 v40.2.0
1611 -------
1612
1613
1614
1615 Changes
1616 ^^^^^^^
1617 * #1466: Fix handling of Unicode arguments in PEP 517 backend
1618
1619
1620 v40.1.1
1621 --------
1622
1623
1624
1625 Changes
1626 ^^^^^^^
1627 * #1465: Fix regression with ``egg_info`` command when tagging is used.
1628
1629
1630 v40.1.0
1631 -------
1632
1633
1634
1635 Changes
1636 ^^^^^^^
1637 * #1410: Deprecated ``upload`` and ``register`` commands.
1638 * #1312: Introduced find_namespace_packages() to find PEP 420 namespace packages.
1639 * #1420: Added find_namespace: directive to config parser.
1640 * #1418: Solved race in when creating egg cache directories.
1641 * #1450: Upgraded vendored PyParsing from 2.1.10 to 2.2.0.
1642 * #1451: Upgraded vendored appdirs from 1.4.0 to 1.4.3.
1643 * #1388: Fixed "Microsoft Visual C++ Build Tools" link in exception when Visual C++ not found.
1644 * #1389: Added support for scripts which have unicode content.
1645 * #1416: Moved several Python version checks over to using ``six.PY2`` and ``six.PY3``.
1646
1647 Misc
1648 ^^^^
1649 * #1441: Removed spurious executable permissions from files that don't need them.
1650
1651
1652 v40.0.0
1653 -------
1654
1655
1656
1657 Breaking Changes
1658 ^^^^^^^^^^^^^^^^
1659 * #1342: Drop support for Python 3.3.
1660
1661 Changes
1662 ^^^^^^^
1663 * #1366: In package_index, fixed handling of encoded entities in URLs.
1664 * #1383: In pkg_resources VendorImporter, avoid removing packages imported from the root.
1665
1666 Documentation changes
1667 ^^^^^^^^^^^^^^^^^^^^^
1668 * #1379: Minor doc fixes after actually using the new release process.
1669 * #1385: Removed section on non-package data files.
1670 * #1403: Fix developer's guide.
1671
1672 Misc
1673 ^^^^
1674 * #1404: Fix PEP 518 configuration: set build requirements in ``pyproject.toml`` to ``["wheel"]``.
1675
1676
1677 v39.2.0
1678 -------
1679
1680
1681
1682 Changes
1683 ^^^^^^^
1684 * #1359: Support using "file:" to load a PEP 440-compliant package version from
1685   a text file.
1686 * #1360: Fixed issue with a mismatch between the name of the package and the
1687   name of the .dist-info file in wheel files
1688 * #1364: Add ``__dir__()`` implementation to ``pkg_resources.Distribution()`` that
1689   includes the attributes in the ``_provider`` instance variable.
1690 * #1365: Take the package_dir option into account when loading the version from
1691   a module attribute.
1692
1693 Documentation changes
1694 ^^^^^^^^^^^^^^^^^^^^^
1695 * #1353: Added coverage badge to README.
1696 * #1356: Made small fixes to the developer guide documentation.
1697 * #1357: Fixed warnings in documentation builds and started enforcing that the
1698   docs build without warnings in tox.
1699 * #1376: Updated release process docs.
1700
1701 Misc
1702 ^^^^
1703 * #1343: The ``setuptools`` specific ``long_description_content_type``,
1704   ``project_urls`` and ``provides_extras`` fields are now set consistently
1705   after any ``distutils`` ``setup_keywords`` calls, allowing them to override
1706   values.
1707 * #1352: Added ``tox`` environment for documentation builds.
1708 * #1354: Added ``towncrier`` for changelog management.
1709 * #1355: Add PR template.
1710 * #1368: Fixed tests which failed without network connectivity.
1711 * #1369: Added unit tests for PEP 425 compatibility tags support.
1712 * #1372: Stop testing Python 3.3 in Travis CI, now that the latest version of
1713   ``wheel`` no longer installs on it.
1714
1715 v39.1.0
1716 -------
1717
1718 * #1340: Update all PyPI URLs to reflect the switch to the
1719   new Warehouse codebase.
1720 * #1337: In ``pkg_resources``, now support loading resources
1721   for modules loaded by the ``SourcelessFileLoader``.
1722 * #1332: Silence spurious wheel related warnings on Windows.
1723
1724 v39.0.1
1725 -------
1726
1727 * #1297: Restore Unicode handling for Maintainer fields in
1728   metadata.
1729
1730 v39.0.0
1731 -------
1732
1733 * #1296: Setuptools now vendors its own direct dependencies, no
1734   longer relying on the dependencies as vendored by pkg_resources.
1735
1736 * #296: Removed long-deprecated support for iteration on
1737   Version objects as returned by ``pkg_resources.parse_version``.
1738   Removed the ``SetuptoolsVersion`` and
1739   ``SetuptoolsLegacyVersion`` names as well. They should not
1740   have been used, but if they were, replace with
1741   ``Version`` and ``LegacyVersion`` from ``packaging.version``.
1742
1743 v38.7.0
1744 -------
1745
1746 * #1288: Add support for maintainer in PKG-INFO.
1747
1748 v38.6.1
1749 -------
1750
1751 * #1292: Avoid generating ``Provides-Extra`` in metadata when
1752   no extra is present (but environment markers are).
1753
1754 v38.6.0
1755 -------
1756
1757 * #1286: Add support for Metadata 2.1 (PEP 566).
1758
1759 v38.5.2
1760 -------
1761
1762 * #1285: Fixed RuntimeError in pkg_resources.parse_requirements
1763   on Python 3.7 (stemming from PEP 479).
1764
1765 v38.5.1
1766 -------
1767
1768 * #1271: Revert to Cython legacy ``build_ext`` behavior for
1769   compatibility.
1770
1771 v38.5.0
1772 -------
1773
1774 * #1229: Expand imports in ``build_ext`` to refine detection of
1775   Cython availability.
1776
1777 * #1270: When Cython is available, ``build_ext`` now uses the
1778   new_build_ext.
1779
1780 v38.4.1
1781 -------
1782
1783 * #1257: In bdist_egg.scan_module, fix ValueError on Python 3.7.
1784
1785 v38.4.0
1786 -------
1787
1788 * #1231: Removed warning when PYTHONDONTWRITEBYTECODE is enabled.
1789
1790 v38.3.0
1791 -------
1792
1793 * #1210: Add support for PEP 345 Project-URL metadata.
1794 * #1207: Add support for ``long_description_type`` to setup.cfg
1795   declarative config as intended and documented.
1796
1797 v38.2.5
1798 -------
1799
1800 * #1232: Fix trailing slash handling in ``pkg_resources.ZipProvider``.
1801
1802 v38.2.4
1803 -------
1804
1805 * #1220: Fix ``data_files`` handling when installing from wheel.
1806
1807 v38.2.3
1808 -------
1809
1810 * fix Travis' Python 3.3 job.
1811
1812 v38.2.2
1813 -------
1814
1815 * #1214: fix handling of namespace packages when installing
1816   from a wheel.
1817
1818 v38.2.1
1819 -------
1820
1821 * #1212: fix encoding handling of metadata when installing
1822   from a wheel.
1823
1824 v38.2.0
1825 -------
1826
1827 * #1200: easy_install now support installing from wheels:
1828   they will be installed as standalone unzipped eggs.
1829
1830 v38.1.0
1831 -------
1832
1833 * #1208: Improve error message when failing to locate scripts
1834   in egg-info metadata.
1835
1836 v38.0.0
1837 -------
1838
1839 * #458: In order to support deterministic builds, Setuptools no
1840   longer allows packages to declare ``install_requires`` as
1841   unordered sequences (sets or dicts).
1842
1843 v37.0.0
1844 -------
1845
1846 * #878: Drop support for Python 2.6. Python 2.6 users should
1847   rely on 'setuptools < 37dev'.
1848
1849 v36.8.0
1850 -------
1851
1852 * #1190: In SSL support for package index operations, use SNI
1853   where available.
1854
1855 v36.7.3
1856 -------
1857
1858 * #1175: Bug fixes to ``build_meta`` module.
1859
1860 v36.7.2
1861 -------
1862
1863 * #701: Fixed duplicate test discovery on Python 3.
1864
1865 v36.7.1
1866 -------
1867
1868 * #1193: Avoid test failures in bdist_egg when
1869   PYTHONDONTWRITEBYTECODE is set.
1870
1871 v36.7.0
1872 -------
1873
1874 * #1054: Support ``setup_requires`` in ``setup.cfg`` files.
1875
1876 v36.6.1
1877 -------
1878
1879 * #1132: Removed redundant and costly serialization/parsing step
1880   in ``EntryPoint.__init__``.
1881
1882 * #844: ``bdist_egg --exclude-source-files`` now tested and works
1883   on Python 3.
1884
1885 v36.6.0
1886 -------
1887
1888 * #1143: Added ``setuptools.build_meta`` module, an implementation
1889   of PEP-517 for Setuptools-defined packages.
1890
1891 * #1143: Added ``dist_info`` command for producing dist_info
1892   metadata.
1893
1894 v36.5.0
1895 -------
1896
1897 * #170: When working with Mercurial checkouts, use Windows-friendly
1898   syntax for suppressing output.
1899
1900 * Inspired by #1134, performed substantial refactoring of
1901   ``pkg_resources.find_on_path`` to facilitate an optimization
1902   for paths with many non-version entries.
1903
1904 v36.4.0
1905 -------
1906
1907 * #1075: Add new ``Description-Content-Type`` metadata field. `See here for
1908   documentation on how to use this field.
1909   <https://packaging.python.org/specifications/#description-content-type>`_
1910
1911 * #1068: Sort files and directories when building eggs for
1912   deterministic order.
1913
1914 * #196: Remove caching of easy_install command in fetch_build_egg.
1915   Fixes issue where ``pytest-runner-N.N`` would satisfy the installation
1916   of ``pytest``.
1917
1918 * #1129: Fix working set dependencies handling when replacing conflicting
1919   distributions (e.g. when using ``setup_requires`` with a conflicting
1920   transitive dependency, fix #1124).
1921
1922 * #1133: Improved handling of README files extensions and added
1923   Markdown to the list of searched READMES.
1924
1925 * #1135: Improve performance of pkg_resources import by not invoking
1926   ``access`` or ``stat`` and using ``os.listdir`` instead.
1927
1928 v36.3.0
1929 -------
1930
1931 * #1131: Make possible using several files within ``file:`` directive
1932   in metadata.long_description in ``setup.cfg``.
1933
1934 v36.2.7
1935 -------
1936
1937 * fix #1105: Fix handling of requirements with environment
1938   markers when declared in ``setup.cfg`` (same treatment as
1939   for #1081).
1940
1941 v36.2.6
1942 -------
1943
1944 * #462: Don't assume a directory is an egg by the ``.egg``
1945   extension alone.
1946
1947 v36.2.5
1948 -------
1949
1950 * #1093: Fix test command handler with extras_require.
1951 * #1112, #1091, #1115: Now using Trusty containers in
1952   Travis for CI and CD.
1953
1954 v36.2.4
1955 -------
1956
1957 * #1092: ``pkg_resources`` now uses ``inspect.getmro`` to
1958   resolve classes in method resolution order.
1959
1960 v36.2.3
1961 -------
1962
1963 * #1102: Restore behavior for empty extras.
1964
1965 v36.2.2
1966 -------
1967
1968 * #1099: Revert commit a3ec721, restoring intended purpose of
1969   extras as part of a requirement declaration.
1970
1971 v36.2.1
1972 -------
1973
1974 * fix #1086
1975 * fix #1087
1976 * support extras specifiers in install_requires requirements
1977
1978 v36.2.0
1979 -------
1980
1981 * #1081: Environment markers indicated in ``install_requires``
1982   are now processed and treated as nameless ``extras_require``
1983   with markers, allowing their metadata in requires.txt to be
1984   correctly generated.
1985
1986 * #1053: Tagged commits are now released using Travis-CI
1987   build stages, meaning releases depend on passing tests on
1988   all supported Python versions (Linux) and not just the latest
1989   Python version.
1990
1991 v36.1.1
1992 -------
1993
1994 * #1083: Correct ``py31compat.makedirs`` to correctly honor
1995   ``exist_ok`` parameter.
1996 * #1083: Also use makedirs compatibility throughout setuptools.
1997
1998 v36.1.0
1999 -------
2000
2001 * #1083: Avoid race condition on directory creation in
2002   ``pkg_resources.ensure_directory``.
2003
2004 * Removed deprecation of and restored support for
2005   ``upload_docs`` command for sites other than PyPI.
2006   Only warehouse is dropping support, but services like
2007   `devpi <http://doc.devpi.net/latest/>`_ continue to
2008   support docs built by setuptools' plugins. See
2009   `this comment <https://bitbucket.org/hpk42/devpi/issues/388/support-rtd-model-for-building-uploading#comment-34292423>`_
2010   for more context on the motivation for this change.
2011
2012 v36.0.1
2013 -------
2014
2015 * #1042: Fix import in py27compat module that still
2016   referenced six directly, rather than through the externs
2017   module (vendored packages hook).
2018
2019 v36.0.0
2020 -------
2021
2022 * #980 and others: Once again, Setuptools vendors all
2023   of its dependencies. It seems to be the case that in
2024   the Python ecosystem, all build tools must run without
2025   any dependencies (build, runtime, or otherwise). At
2026   such a point that a mechanism exists that allows
2027   build tools to have dependencies, Setuptools will adopt
2028   it.
2029
2030 v35.0.2
2031 -------
2032
2033 * #1015: Fix test failures on Python 3.7.
2034
2035 * #1024: Add workaround for Jython #2581 in monkey module.
2036
2037 v35.0.1
2038 -------
2039
2040 * #992: Revert change introduced in v34.4.1, now
2041   considered invalid.
2042
2043 * #1016: Revert change introduced in v35.0.0 per #1014,
2044   referencing #436. The approach had unintended
2045   consequences, causing sdist installs to be missing
2046   files.
2047
2048 v35.0.0
2049 -------
2050
2051 * #436: In egg_info.manifest_maker, no longer read
2052   the file list from the manifest file, and instead
2053   re-build it on each build. In this way, files removed
2054   from the specification will not linger in the manifest.
2055   As a result, any files manually added to the manifest
2056   will be removed on subsequent egg_info invocations.
2057   No projects should be manually adding files to the
2058   manifest and should instead use MANIFEST.in or SCM
2059   file finders to force inclusion of files in the manifest.
2060
2061 v34.4.1
2062 -------
2063
2064 * #1008: In MSVC support, use always the last version available for Windows SDK and UCRT SDK.
2065
2066 * #1008: In MSVC support, fix "vcruntime140.dll" returned path with Visual Studio 2017.
2067
2068 * #992: In msvc.msvc9_query_vcvarsall, ensure the
2069   returned dicts have str values and not Unicode for
2070   compatibility with os.environ.
2071
2072 v34.4.0
2073 -------
2074
2075 * #995: In MSVC support, add support for "Microsoft Visual Studio 2017" and "Microsoft Visual Studio Build Tools 2017".
2076
2077 * #999 via #1007: Extend support for declarative package
2078   config in a setup.cfg file to include the options
2079   ``python_requires`` and ``py_modules``.
2080
2081 v34.3.3
2082 -------
2083
2084 * #967 (and #997): Explicitly import submodules of
2085   packaging to account for environments where the imports
2086   of those submodules is not implied by other behavior.
2087
2088 v34.3.2
2089 -------
2090
2091 * #993: Fix documentation upload by correcting
2092   rendering of content-type in _build_multipart
2093   on Python 3.
2094
2095 v34.3.1
2096 -------
2097
2098 * #988: Trap ``os.unlink`` same as ``os.remove`` in
2099   ``auto_chmod`` error handler.
2100
2101 * #983: Fixes to invalid escape sequence deprecations on
2102   Python 3.6.
2103
2104 v34.3.0
2105 -------
2106
2107 * #941: In the upload command, if the username is blank,
2108   default to ``getpass.getuser()``.
2109
2110 * #971: Correct distutils findall monkeypatch to match
2111   appropriate versions (namely Python 3.4.6).
2112
2113 v34.2.0
2114 -------
2115
2116 * #966: Add support for reading dist-info metadata and
2117   thus locating Distributions from zip files.
2118
2119 * #968: Allow '+' and '!' in egg fragments
2120   so that it can take package names that contain
2121   PEP 440 conforming version specifiers.
2122
2123 v34.1.1
2124 -------
2125
2126 * #953: More aggressively employ the compatibility issue
2127   originally added in #706.
2128
2129 v34.1.0
2130 -------
2131
2132 * #930: ``build_info`` now accepts two new parameters
2133   to optimize and customize the building of C libraries.
2134
2135 v34.0.3
2136 -------
2137
2138 * #947: Loosen restriction on the version of six required,
2139   restoring compatibility with environments relying on
2140   six 1.6.0 and later.
2141
2142 v34.0.2
2143 -------
2144
2145 * #882: Ensure extras are honored when building the
2146   working set.
2147 * #913: Fix issue in develop if package directory has
2148   a trailing slash.
2149
2150 v34.0.1
2151 -------
2152
2153 * #935: Fix glob syntax in graft.
2154
2155 v34.0.0
2156 -------
2157
2158 * #581: Instead of vendoring the growing list of
2159   dependencies that Setuptools requires to function,
2160   Setuptools now requires these dependencies just like
2161   any other project. Unlike other projects, however,
2162   Setuptools cannot rely on ``setup_requires`` to
2163   demand the dependencies it needs to install because
2164   its own machinery would be necessary to pull those
2165   dependencies if not present (a bootstrapping problem).
2166   As a result, Setuptools no longer supports self upgrade or
2167   installation in the general case. Instead, users are
2168   directed to use pip to install and upgrade using the
2169   ``wheel`` distributions of setuptools.
2170
2171   Users are welcome to contrive other means to install
2172   or upgrade Setuptools using other means, such as
2173   pre-installing the Setuptools dependencies with pip
2174   or a bespoke bootstrap tool, but such usage is not
2175   recommended and is not supported.
2176
2177   As discovered in #940, not all versions of pip will
2178   successfully install Setuptools from its pre-built
2179   wheel. If you encounter issues with "No module named
2180   six" or "No module named packaging", especially
2181   following a line "Running setup.py egg_info for package
2182   setuptools", then your pip is not new enough.
2183
2184   There's an additional issue in pip where setuptools
2185   is upgraded concurrently with other source packages,
2186   described in pip #4253. The proposed workaround is to
2187   always upgrade Setuptools first prior to upgrading
2188   other packages that would upgrade Setuptools.
2189
2190 v33.1.1
2191 -------
2192
2193 * #921: Correct issue where certifi fallback not being
2194   reached on Windows.
2195
2196 v33.1.0
2197 -------
2198
2199 Installation via pip, as indicated in the `Python Packaging
2200 User's Guide <https://packaging.python.org/installing/>`_,
2201 is the officially-supported mechanism for installing
2202 Setuptools, and this recommendation is now explicit in the
2203 much more concise README.
2204
2205 Other edits and tweaks were made to the documentation. The
2206 codebase is unchanged.
2207
2208 v33.0.0
2209 -------
2210
2211 * #619: Removed support for the ``tag_svn_revision``
2212   distribution option. If Subversion tagging support is
2213   still desired, consider adding the functionality to
2214   setuptools_svn in setuptools_svn #2.
2215
2216 v32.3.1
2217 -------
2218
2219 * #866: Use ``dis.Bytecode`` on Python 3.4 and later in
2220   ``setuptools.depends``.
2221
2222 v32.3.0
2223 -------
2224
2225 * #889: Backport proposed fix for disabling interpolation in
2226   distutils.Distribution.parse_config_files.
2227
2228 v32.2.0
2229 -------
2230
2231 * #884: Restore support for running the tests under
2232   `pytest-runner <https://github.com/pytest-dev/pytest-runner>`_
2233   by ensuring that PYTHONPATH is honored in tests invoking
2234   a subprocess.
2235
2236 v32.1.3
2237 -------
2238
2239 * #706: Add rmtree compatibility shim for environments where
2240   rmtree fails when passed a unicode string.
2241
2242 v32.1.2
2243 -------
2244
2245 * #893: Only release sdist in zip format as warehouse now
2246   disallows releasing two different formats.
2247
2248 v32.1.1
2249 -------
2250
2251 * #704: More selectively ensure that 'rmtree' is not invoked with
2252   a byte string, enabling it to remove files that are non-ascii,
2253   even on Python 2.
2254
2255 * #712: In 'sandbox.run_setup', ensure that ``__file__`` is
2256   always a ``str``, modeling the behavior observed by the
2257   interpreter when invoking scripts and modules.
2258
2259 v32.1.0
2260 -------
2261
2262 * #891: In 'test' command on test failure, raise DistutilsError,
2263   suppression invocation of subsequent commands.
2264
2265 v32.0.0
2266 -------
2267
2268 * #890: Revert #849. ``global-exclude .foo`` will not match all
2269   ``*.foo`` files any more. Package authors must add an explicit
2270   wildcard, such as ``global-exclude *.foo``, to match all
2271   ``.foo`` files. See #886, #849.
2272
2273 v31.0.1
2274 -------
2275
2276 * #885: Fix regression where 'pkg_resources._rebuild_mod_path'
2277   would fail when a namespace package's '__path__' was not
2278   a list with a sort attribute.
2279
2280 v31.0.0
2281 -------
2282
2283 * #250: Install '-nspkg.pth' files for packages installed
2284   with 'setup.py develop'. These .pth files allow
2285   namespace packages installed by pip or develop to
2286   co-mingle. This change required the removal of the
2287   change for #805 and pip #1924, introduced in 28.3.0 and implicated
2288   in #870, but means that namespace packages not in a
2289   site packages directory will no longer work on Python
2290   earlier than 3.5, whereas before they would work on
2291   Python not earlier than 3.3.
2292
2293 v30.4.0
2294 -------
2295
2296 * #879: For declarative config:
2297
2298   - read_configuration() now accepts ignore_option_errors argument. This allows scraping tools to read metadata without a need to download entire packages. E.g. we can gather some stats right from GitHub repos just by downloading setup.cfg.
2299
2300   - packages find: directive now supports fine tuning from a subsection. The same arguments as for find() are accepted.
2301
2302 v30.3.0
2303 -------
2304
2305 * #394 via #862: Added support for `declarative package
2306   config in a setup.cfg file
2307   <https://setuptools.pypa.io/en/latest/setuptools.html#configuring-setup-using-setup-cfg-files>`_.
2308
2309 v30.2.1
2310 -------
2311
2312 * #850: In test command, invoke unittest.main with
2313   indication not to exit the process.
2314
2315 v30.2.0
2316 -------
2317
2318 * #854: Bump to vendored Packaging 16.8.
2319
2320 v30.1.0
2321 -------
2322
2323 * #846: Also trap 'socket.error' when opening URLs in
2324   package_index.
2325
2326 * #849: Manifest processing now matches the filename
2327   pattern anywhere in the filename and not just at the
2328   start. Restores behavior found prior to 28.5.0.
2329
2330 v30.0.0
2331 -------
2332
2333 * #864: Drop support for Python 3.2. Systems requiring
2334   Python 3.2 support must use 'setuptools < 30'.
2335
2336 * #825: Suppress warnings for single files.
2337
2338 * #830 via #843: Once again restored inclusion of data
2339   files to sdists, but now trap TypeError caused by
2340   techniques employed rjsmin and similar.
2341
2342 v29.0.1
2343 -------
2344
2345 * #861: Re-release of v29.0.1 with the executable script
2346   launchers bundled. Now, launchers are included by default
2347   and users that want to disable this behavior must set the
2348   environment variable
2349   'SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES' to
2350   a false value like "false" or "0".
2351
2352 v29.0.0
2353 -------
2354
2355 * #841: Drop special exception for packages invoking
2356   win32com during the build/install process. See
2357   Distribute #118 for history.
2358
2359 v28.8.0
2360 -------
2361
2362 * #629: Per the discussion, refine the sorting to use version
2363   value order for more accurate detection of the latest
2364   available version when scanning for packages. See also
2365   #829.
2366
2367 * #837: Rely on the config var "SO" for Python 3.3.0 only
2368   when determining the ext filename.
2369
2370 v28.7.1
2371 -------
2372
2373 * #827: Update PyPI root for dependency links.
2374
2375 * #833: Backed out changes from #830 as the implementation
2376   seems to have problems in some cases.
2377
2378 v28.7.0
2379 -------
2380
2381 * #832: Moved much of the namespace package handling
2382   functionality into a separate module for re-use in something
2383   like #789.
2384 * #830: ``sdist`` command no longer suppresses the inclusion
2385   of data files, re-aligning with the expectation of distutils
2386   and addressing #274 and #521.
2387
2388 v28.6.1
2389 -------
2390
2391 * #816: Fix manifest file list order in tests.
2392
2393 v28.6.0
2394 -------
2395
2396 * #629: When scanning for packages, ``pkg_resources`` now
2397   ignores empty egg-info directories and gives precedence to
2398   packages whose versions are lexicographically greatest,
2399   a rough approximation for preferring the latest available
2400   version.
2401
2402 v28.5.0
2403 -------
2404
2405 * #810: Tests are now invoked with tox and not setup.py test.
2406 * #249 and #450 via #764: Avoid scanning the whole tree
2407   when building the manifest. Also fixes a long-standing bug
2408   where patterns in ``MANIFEST.in`` had implicit wildcard
2409   matching. This caused ``global-exclude .foo`` to exclude
2410   all ``*.foo`` files, but also ``global-exclude bar.py`` to
2411   exclude ``foo_bar.py``.
2412
2413 v28.4.0
2414 -------
2415
2416 * #732: Now extras with a hyphen are honored per PEP 426.
2417 * #811: Update to pyparsing 2.1.10.
2418 * Updated ``setuptools.command.sdist`` to re-use most of
2419   the functionality directly from ``distutils.command.sdist``
2420   for the ``add_defaults`` method with strategic overrides.
2421   See #750 for rationale.
2422 * #760 via #762: Look for certificate bundle where SUSE
2423   Linux typically presents it. Use ``certifi.where()`` to locate
2424   the bundle.
2425
2426 v28.3.0
2427 -------
2428
2429 * #809: In ``find_packages()``, restore support for excluding
2430   a parent package without excluding a child package.
2431
2432 * #805: Disable ``-nspkg.pth`` behavior on Python 3.3+ where
2433   PEP-420 functionality is adequate. Fixes pip #1924.
2434
2435 v28.1.0
2436 -------
2437
2438 * #803: Bump certifi to 2016.9.26.
2439
2440 v28.0.0
2441 -------
2442
2443 * #733: Do not search excluded directories for packages.
2444   This introduced a backwards incompatible change in ``find_packages()``
2445   so that ``find_packages(exclude=['foo']) == []``, excluding subpackages of ``foo``.
2446   Previously, ``find_packages(exclude=['foo']) == ['foo.bar']``,
2447   even though the parent ``foo`` package was excluded.
2448
2449 * #795: Bump certifi.
2450
2451 * #719: Suppress decoding errors and instead log a warning
2452   when metadata cannot be decoded.
2453
2454 v27.3.1
2455 -------
2456
2457 * #790: In MSVC monkeypatching, explicitly patch each
2458   function by name in the target module instead of inferring
2459   the module from the function's ``__module__``. Improves
2460   compatibility with other packages that might have previously
2461   patched distutils functions (i.e. NumPy).
2462
2463 v27.3.0
2464 -------
2465
2466 * #794: In test command, add installed eggs to PYTHONPATH
2467   when invoking tests so that subprocesses will also have the
2468   dependencies available. Fixes `tox 330
2469   <https://github.com/tox-dev/tox/issues/330>`_.
2470
2471 * #795: Update vendored pyparsing 2.1.9.
2472
2473 v27.2.0
2474 -------
2475
2476 * #520 and #513: Suppress ValueErrors in fixup_namespace_packages
2477   when lookup fails.
2478
2479 * Nicer, more consistent interfaces for msvc monkeypatching.
2480
2481 v27.1.2
2482 -------
2483
2484 * #779 via #781: Fix circular import.
2485
2486 v27.1.1
2487 -------
2488
2489 * #778: Fix MSVC monkeypatching.
2490
2491 v27.1.0
2492 -------
2493
2494 * Introduce the (private) ``monkey`` module to encapsulate
2495   the distutils monkeypatching behavior.
2496
2497 v27.0.0
2498 -------
2499
2500 * Now use Warehouse by default for
2501   ``upload``, patching ``distutils.config.PyPIRCCommand`` to
2502   affect default behavior.
2503
2504   Any config in .pypirc should be updated to replace
2505
2506     https://pypi.python.org/pypi/
2507
2508   with
2509
2510     https://upload.pypi.org/legacy/
2511
2512   Similarly, any passwords stored in the keyring should be
2513   updated to use this new value for "system".
2514
2515   The ``upload_docs`` command will continue to use the python.org
2516   site, but the command is now deprecated. Users are urged to use
2517   Read The Docs instead.
2518
2519 * #776: Use EXT_SUFFIX for py_limited_api renaming.
2520
2521 * #774 and #775: Use LegacyVersion from packaging when
2522   detecting numpy versions.
2523
2524 v26.1.1
2525 -------
2526
2527 * Re-release of 26.1.0 with pytest pinned to allow for automated
2528   deployment and thus proper packaging environment variables,
2529   fixing issues with missing executable launchers.
2530
2531 v26.1.0
2532 -------
2533
2534 * #763: ``pkg_resources.get_default_cache`` now defers to the
2535   `appdirs project <https://pypi.org/project/appdirs>`_ to
2536   resolve the cache directory. Adds a vendored dependency on
2537   appdirs to pkg_resources.
2538
2539 v26.0.0
2540 -------
2541
2542 * #748: By default, sdists are now produced in gzipped tarfile
2543   format by default on all platforms, adding forward compatibility
2544   for the same behavior in Python 3.6 (See Python #27819).
2545
2546 * #459 via #736: On Windows with script launchers,
2547   sys.argv[0] now reflects
2548   the name of the entry point, consistent with the behavior in
2549   distlib and pip wrappers.
2550
2551 * #752 via #753: When indicating ``py_limited_api`` to Extension,
2552   it must be passed as a keyword argument.
2553
2554 v25.4.0
2555 -------
2556
2557 * Add Extension(py_limited_api=True). When set to a truthy value,
2558   that extension gets a filename appropriate for code using Py_LIMITED_API.
2559   When used correctly this allows a single compiled extension to work on
2560   all future versions of CPython 3.
2561   The py_limited_api argument only controls the filename. To be
2562   compatible with multiple versions of Python 3, the C extension
2563   will also need to set -DPy_LIMITED_API=... and be modified to use
2564   only the functions in the limited API.
2565
2566 v25.3.0
2567 -------
2568
2569 * #739 Fix unquoted libpaths by fixing compatibility between ``numpy.distutils`` and ``distutils._msvccompiler`` for numpy < 1.11.2 (Fix issue #728, error also fixed in Numpy).
2570
2571 * #731: Bump certifi.
2572
2573 * Style updates. See #740, #741, #743, #744, #742, #747.
2574
2575 * #735: include license file.
2576
2577 v25.2.0
2578 -------
2579
2580 * #612 via #730: Add a LICENSE file which needs to be provided by the terms of
2581   the MIT license.
2582
2583 v25.1.6
2584 -------
2585
2586 * #725: revert ``library_dir_option`` patch (Error is related to ``numpy.distutils`` and make errors on non Numpy users).
2587
2588 v25.1.5
2589 -------
2590
2591 * #720
2592 * #723: Improve patch for ``library_dir_option``.
2593
2594 v25.1.4
2595 -------
2596
2597 * #717
2598 * #713
2599 * #707: Fix Python 2 compatibility for MSVC by catching errors properly.
2600 * #715: Fix unquoted libpaths by patching ``library_dir_option``.
2601
2602 v25.1.3
2603 -------
2604
2605 * #714 and #704: Revert fix as it breaks other components
2606   downstream that can't handle unicode. See #709, #710,
2607   and #712.
2608
2609 v25.1.2
2610 -------
2611
2612 * #704: Fix errors when installing a zip sdist that contained
2613   files named with non-ascii characters on Windows would
2614   crash the install when it attempted to clean up the build.
2615 * #646: MSVC compatibility - catch errors properly in
2616   RegistryInfo.lookup.
2617 * #702: Prevent UnboundLocalError when initial working_set
2618   is empty.
2619
2620 v25.1.1
2621 -------
2622
2623 * #686: Fix issue in sys.path ordering by pkg_resources when
2624   rewrite technique is "raw".
2625 * #699: Fix typo in msvc support.
2626
2627 v25.1.0
2628 -------
2629
2630 * #609: Setuptools will now try to download a distribution from
2631   the next possible download location if the first download fails.
2632   This means you can now specify multiple links as ``dependency_links``
2633   and all links will be tried until a working download link is encountered.
2634
2635 v25.0.2
2636 -------
2637
2638 * #688: Fix AttributeError in setup.py when invoked not from
2639   the current directory.
2640
2641 v25.0.1
2642 -------
2643
2644 * Cleanup of setup.py script.
2645
2646 * Fixed documentation builders by allowing setup.py
2647   to be imported without having bootstrapped the
2648   metadata.
2649
2650 * More style cleanup. See #677, #678, #679, #681, #685.
2651
2652 v25.0.0
2653 -------
2654
2655 * #674: Default ``sys.path`` manipulation by easy-install.pth
2656   is now "raw", meaning that when writing easy-install.pth
2657   during any install operation, the ``sys.path`` will not be
2658   rewritten and will no longer give preference to easy_installed
2659   packages.
2660
2661   To retain the old behavior when using any easy_install
2662   operation (including ``setup.py install`` when setuptools is
2663   present), set the environment variable:
2664
2665     SETUPTOOLS_SYS_PATH_TECHNIQUE=rewrite
2666
2667   This project hopes that that few if any environments find it
2668   necessary to retain the old behavior, and intends to drop
2669   support for it altogether in a future release. Please report
2670   any relevant concerns in the ticket for this change.
2671
2672 v24.3.1
2673 -------
2674
2675 * #398: Fix shebang handling on Windows in script
2676   headers where spaces in ``sys.executable`` would
2677   produce an improperly-formatted shebang header,
2678   introduced in 12.0 with the fix for #188.
2679
2680 * #663, #670: More style updates.
2681
2682 v24.3.0
2683 -------
2684
2685 * #516: Disable ``os.link`` to avoid hard linking
2686   in ``sdist.make_distribution``, avoiding errors on
2687   systems that support hard links but not on the
2688   file system in which the build is occurring.
2689
2690 v24.2.1
2691 -------
2692
2693 * #667: Update Metadata-Version to 1.2 when
2694   ``python_requires`` is supplied.
2695
2696 v24.2.0
2697 -------
2698
2699 * #631: Add support for ``python_requires`` keyword.
2700
2701 v24.1.1
2702 -------
2703
2704 * More style updates. See #660, #661, #641.
2705
2706 v24.1.0
2707 -------
2708
2709 * #659: ``setup.py`` now will fail fast and with a helpful
2710   error message when the necessary metadata is missing.
2711 * More style updates. See #656, #635, #640,
2712   #644, #650, #652, and #655.
2713
2714 v24.0.3
2715 -------
2716
2717 * Updated style in much of the codebase to match
2718   community expectations. See #632, #633, #634,
2719   #637, #639, #638, #642, #648.
2720
2721 v24.0.2
2722 -------
2723
2724 * If MSVC++14 is needed ``setuptools.msvc`` now redirect
2725   user to Visual C++ Build Tools web page.
2726
2727 v24.0.1
2728 -------
2729
2730 * #625 and #626: Fixes on ``setuptools.msvc`` mainly
2731   for Python 2 and Linux.
2732
2733 v24.0.0
2734 -------
2735
2736 * Pull Request #174: Add more aggressive support for
2737   standalone Microsoft Visual C++ compilers in
2738   msvc9compiler patch.
2739   Particularly : Windows SDK 6.1 and 7.0
2740   (MSVC++ 9.0), Windows SDK 7.1 (MSVC++ 10.0),
2741   Visual C++ Build Tools 2015 (MSVC++14)
2742 * Renamed ``setuptools.msvc9_support`` to
2743   ``setuptools.msvc``.
2744
2745 v23.2.1
2746 -------
2747
2748 Re-release of v23.2.0, which was missing the intended
2749 commits.
2750
2751 * #623: Remove used of deprecated 'U' flag when reading
2752   manifests.
2753
2754 v23.1.0
2755 -------
2756
2757 * #619: Deprecated ``tag_svn_revision`` distribution
2758   option.
2759
2760 v23.0.0
2761 -------
2762
2763 * #611: Removed ARM executables for CLI and GUI script
2764   launchers on Windows. If this was a feature you cared
2765   about, please comment in the ticket.
2766 * #604: Removed docs building support. The project
2767   now relies on documentation hosted at
2768   https://setuptools.pypa.io/.
2769
2770 v22.0.5
2771 -------
2772
2773 * #604: Restore repository for upload_docs command
2774   to restore publishing of docs during release.
2775
2776 v22.0.4
2777 -------
2778
2779 * #589: Upload releases to pypi.io using the upload
2780   hostname and legacy path.
2781
2782 v22.0.3
2783 -------
2784
2785 * #589: Releases are now uploaded to pypi.io (Warehouse)
2786   even when releases are made on Twine via Travis.
2787
2788 v22.0.2
2789 -------
2790
2791 * #589: Releases are now uploaded to pypi.io (Warehouse).
2792
2793 v22.0.1
2794 -------
2795
2796 * #190: On Python 2, if unicode is passed for packages to
2797   ``build_py`` command, it will be handled just as with
2798   text on Python 3.
2799
2800 v22.0.0
2801 -------
2802
2803 Intended to be v21.3.0, but jaraco accidentally released as
2804 a major bump.
2805
2806 * #598: Setuptools now lists itself first in the User-Agent
2807   for web requests, better following the guidelines in
2808   `RFC 7231
2809   <https://tools.ietf.org/html/rfc7231#section-5.5.3>`_.
2810
2811 v21.2.2
2812 -------
2813
2814 * Minor fixes to changelog and docs.
2815
2816 v21.2.1
2817 -------
2818
2819 * #261: Exclude directories when resolving globs in
2820   package_data.
2821
2822 v21.2.0
2823 -------
2824
2825 * #539: In the easy_install get_site_dirs, honor all
2826   paths found in ``site.getsitepackages``.
2827
2828 v21.1.0
2829 -------
2830
2831 * #572: In build_ext, now always import ``_CONFIG_VARS``
2832   from ``distutils`` rather than from ``sysconfig``
2833   to allow ``distutils.sysconfig.customize_compiler``
2834   configure the OS X compiler for ``-dynamiclib``.
2835
2836 v21.0.0
2837 -------
2838
2839 * Removed ez_setup.py from Setuptools sdist. The
2840   bootstrap script will be maintained in its own
2841   branch and should be generally be retrieved from
2842   its canonical location at
2843   https://bootstrap.pypa.io/ez_setup.py.
2844
2845 v20.10.0
2846 --------
2847
2848 * #553: egg_info section is now generated in a
2849   deterministic order, matching the order generated
2850   by earlier versions of Python. Except on Python 2.6,
2851   order is preserved when existing settings are present.
2852 * #556: Update to Packaging 16.7, restoring support
2853   for deprecated ``python_implmentation`` marker.
2854 * #555: Upload command now prompts for a password
2855   when uploading to PyPI (or other repository) if no
2856   password is present in .pypirc or in the keyring.
2857
2858 v20.9.0
2859 -------
2860
2861 * #548: Update certify version to 2016.2.28
2862 * #545: Safely handle deletion of non-zip eggs in rotate
2863   command.
2864
2865 v20.8.1
2866 -------
2867
2868 * Issue #544: Fix issue with extra environment marker
2869   processing in WorkingSet due to refactor in v20.7.0.
2870
2871 v20.8.0
2872 -------
2873
2874 * Issue #543: Re-release so that latest release doesn't
2875   cause déjà vu with distribute and setuptools 0.7 in
2876   older environments.
2877
2878 v20.7.0
2879 -------
2880
2881 * Refactored extra environment marker processing
2882   in WorkingSet.
2883 * Issue #533: Fixed intermittent test failures.
2884 * Issue #536: In msvc9_support, trap additional exceptions
2885   that might occur when importing
2886   ``distutils.msvc9compiler`` in mingw environments.
2887 * Issue #537: Provide better context when package
2888   metadata fails to decode in UTF-8.
2889
2890 v20.6.8
2891 -------
2892
2893 * Issue #523: Restored support for environment markers,
2894   now honoring 'extra' environment markers.
2895
2896 v20.6.7
2897 -------
2898
2899 * Issue #523: Disabled support for environment markers
2900   introduced in v20.5.
2901
2902 v20.6.6
2903 -------
2904
2905 * Issue #503: Restore support for PEP 345 environment
2906   markers by updating to Packaging 16.6.
2907
2908 v20.6.0
2909 -------
2910
2911 * New release process that relies on
2912   `bumpversion <https://github.com/peritus/bumpversion>`_
2913   and Travis CI for continuous deployment.
2914 * Project versioning semantics now follow
2915   `semver <https://semver.org>`_ precisely.
2916   The 'v' prefix on version numbers now also allows
2917   version numbers to be referenced in the changelog,
2918   e.g. http://setuptools.pypa.io/en/latest/history.html#v20-6-0.
2919
2920 20.5
2921 ----
2922
2923 * BB Pull Request #185, #470: Add support for environment markers
2924   in requirements in install_requires, setup_requires,
2925   tests_require as well as adding a test for the existing
2926   extra_requires machinery.
2927
2928 20.4
2929 ----
2930
2931 * Issue #422: Moved hosting to
2932   `Github <https://github.com/pypa/setuptools>`_
2933   from `Bitbucket <https://bitbucket.org/pypa/setuptools>`_.
2934   Issues have been migrated, though all issues and comments
2935   are attributed to bb-migration. So if you have a particular
2936   issue or issues to which you've been subscribed, you will
2937   want to "watch" the equivalent issue in Github.
2938   The Bitbucket project will be retained for the indefinite
2939   future, but Github now hosts the canonical project repository.
2940
2941 20.3.1
2942 ------
2943
2944 * Issue #519: Remove import hook when reloading the
2945   ``pkg_resources`` module.
2946 * BB Pull Request #184: Update documentation in ``pkg_resources``
2947   around new ``Requirement`` implementation.
2948
2949 20.3
2950 ----
2951
2952 * BB Pull Request #179: ``pkg_resources.Requirement`` objects are
2953   now a subclass of ``packaging.requirements.Requirement``,
2954   allowing any environment markers and url (if any) to be
2955   affiliated with the requirement
2956 * BB Pull Request #179: Restore use of RequirementParseError
2957   exception unintentionally dropped in 20.2.
2958
2959 20.2.2
2960 ------
2961
2962 * Issue #502: Correct regression in parsing of multiple
2963   version specifiers separated by commas and spaces.
2964
2965 20.2.1
2966 ------
2967
2968 * Issue #499: Restore compatibility for legacy versions
2969   by bumping to packaging 16.4.
2970
2971 20.2
2972 ----
2973
2974 * Changelog now includes release dates and links to PEPs.
2975 * BB Pull Request #173: Replace dual PEP 345 _markerlib implementation
2976   and PEP 426 implementation of environment marker support from
2977   packaging 16.1 and PEP 508. Fixes Issue #122.
2978   See also BB Pull Request #175, BB Pull Request #168, and
2979   BB Pull Request #164. Additionally:
2980
2981    - ``Requirement.parse`` no longer retains the order of extras.
2982    - ``parse_requirements`` now requires that all versions be
2983      PEP-440 compliant, as revealed in #499. Packages released
2984      with invalid local versions should be re-released using
2985      the proper local version syntax, e.g. ``mypkg-1.0+myorg.1``.
2986
2987 20.1.1
2988 ------
2989
2990 * Update ``upload_docs`` command to also honor keyring
2991   for password resolution.
2992
2993 20.1
2994 ----
2995
2996 * Added support for using passwords from keyring in the upload
2997   command. See `the upload docs
2998   <https://setuptools.pypa.io/en/latest/setuptools.html#upload-upload-source-and-or-egg-distributions-to-pypi>`_
2999   for details.
3000
3001 20.0
3002 ----
3003
3004 * Issue #118: Once again omit the package metadata (egg-info)
3005   from the list of outputs in ``--record``. This version of setuptools
3006   can no longer be used to upgrade pip earlier than 6.0.
3007
3008 19.7
3009 ----
3010
3011 * Off-project PR: `0dcee79 <https://github.com/pypa/setuptools/commit/0dcee791dfdcfacddaaec79b29f30a347a147413>`_ and `f9bd9b9 <https://github.com/pypa/setuptools/commit/f9bd9b9f5df54ef5a0bf8d16c3a889ab8c640580>`_
3012   For FreeBSD, also `honor root certificates from ca_root_nss <https://github.com/pypa/setuptools/commit/3ae46c30225eb46e1f5aada1a19e88b79f04dc72>`_.
3013
3014 19.6.2
3015 ------
3016
3017 * Issue #491: Correct regression incurred in 19.4 where
3018   a double-namespace package installed using pip would
3019   cause a TypeError.
3020
3021 19.6.1
3022 ------
3023
3024 * Restore compatibility for PyPy 3 compatibility lost in
3025   19.4.1 addressing Issue #487.
3026 * ``setuptools.launch`` shim now loads scripts in a new
3027   namespace, avoiding getting relative imports from
3028   the setuptools package on Python 2.
3029
3030 19.6
3031 ----
3032
3033 * Added a new entry script ``setuptools.launch``,
3034   implementing the shim found in
3035   ``pip.util.setuptools_build``. Use this command to launch
3036   distutils-only packages under setuptools in the same way that
3037   pip does, causing the setuptools monkeypatching of distutils
3038   to be invoked prior to invoking a script. Useful for debugging
3039   or otherwise installing a distutils-only package under
3040   setuptools when pip isn't available or otherwise does not
3041   expose the desired functionality. For example::
3042
3043     $ python -m setuptools.launch setup.py develop
3044
3045 * Issue #488: Fix dual manifestation of Extension class in
3046   extension packages installed as dependencies when Cython
3047   is present.
3048
3049 19.5
3050 ----
3051
3052 * Issue #486: Correct TypeError when getfilesystemencoding
3053   returns None.
3054 * Issue #139: Clarified the license as MIT.
3055 * BB Pull Request #169: Removed special handling of command
3056   spec in scripts for Jython.
3057
3058 19.4.1
3059 ------
3060
3061 * Issue #487: Use direct invocation of ``importlib.machinery``
3062   in ``pkg_resources`` to avoid missing detection on relevant
3063   platforms.
3064
3065 19.4
3066 ----
3067
3068 * Issue #341: Correct error in path handling of package data
3069   files in ``build_py`` command when package is empty.
3070 * Distribute #323, Issue #141, Issue #207, and
3071   BB Pull Request #167: Another implementation of
3072   ``pkg_resources.WorkingSet`` and ``pkg_resources.Distribution``
3073   that supports replacing an extant package with a new one,
3074   allowing for setup_requires dependencies to supersede installed
3075   packages for the session.
3076
3077 19.3
3078 ----
3079
3080 * Issue #229: Implement new technique for readily incorporating
3081   dependencies conditionally from vendored copies or primary
3082   locations. Adds a new dependency on six.
3083
3084 19.2
3085 ----
3086
3087 * BB Pull Request #163: Add get_command_list method to Distribution.
3088 * BB Pull Request #162: Add missing whitespace to multiline string
3089   literals.
3090
3091 19.1.1
3092 ------
3093
3094 * Issue #476: Cast version to string (using default encoding)
3095   to avoid creating Unicode types on Python 2 clients.
3096 * Issue #477: In Powershell downloader, use explicit rendering
3097   of strings, rather than rely on ``repr``, which can be
3098   incorrect (especially on Python 2).
3099
3100 19.1
3101 ----
3102
3103 * Issue #215: The bootstrap script ``ez_setup.py`` now
3104   automatically detects
3105   the latest version of setuptools (using PyPI JSON API) rather
3106   than hard-coding a particular value.
3107 * Issue #475: Fix incorrect usage in _translate_metadata2.
3108
3109 19.0
3110 ----
3111
3112 * Issue #442: Use RawConfigParser for parsing .pypirc file.
3113   Interpolated values are no longer honored in .pypirc files.
3114
3115 18.8.1
3116 ------
3117
3118 * Issue #440: Prevent infinite recursion when a SandboxViolation
3119   or other UnpickleableException occurs in a sandbox context
3120   with setuptools hidden. Fixes regression introduced in Setuptools
3121   12.0.
3122
3123 18.8
3124 ----
3125
3126 * Deprecated ``egg_info.get_pkg_info_revision``.
3127 * Issue #471: Don't rely on repr for an HTML attribute value in
3128   package_index.
3129 * Issue #419: Avoid errors in FileMetadata when the metadata directory
3130   is broken.
3131 * Issue #472: Remove deprecated use of 'U' in mode parameter
3132   when opening files.
3133
3134 18.7.1
3135 ------
3136
3137 * Issue #469: Refactored logic for Issue #419 fix to re-use metadata
3138   loading from Provider.
3139
3140 18.7
3141 ----
3142
3143 * Update dependency on certify.
3144 * BB Pull Request #160: Improve detection of gui script in
3145   ``easy_install._adjust_header``.
3146 * Made ``test.test_args`` a non-data property; alternate fix
3147   for the issue reported in BB Pull Request #155.
3148 * Issue #453: In ``ez_setup`` bootstrap module, unload all
3149   ``pkg_resources`` modules following download.
3150 * BB Pull Request #158: Honor PEP-488 when excluding
3151   files for namespace packages.
3152 * Issue #419 and BB Pull Request #144: Add experimental support for
3153   reading the version info from distutils-installed metadata rather
3154   than using the version in the filename.
3155
3156 18.6.1
3157 ------
3158
3159 * Issue #464: Correct regression in invocation of superclass on old-style
3160   class on Python 2.
3161
3162 18.6
3163 ----
3164
3165 * Issue #439: When installing entry_point scripts under development,
3166   omit the version number of the package, allowing any version of the
3167   package to be used.
3168
3169 18.5
3170 ----
3171
3172 * In preparation for dropping support for Python 3.2, a warning is
3173   now logged when pkg_resources is imported on Python 3.2 or earlier
3174   Python 3 versions.
3175 * `Add support for python_platform_implementation environment marker
3176   <https://github.com/pypa/setuptools/commit/94416707fd59a65f4a8f7f70541d6b3fc018b626>`_.
3177 * `Fix dictionary mutation during iteration
3178   <https://github.com/pypa/setuptools/commit/57ebfa41e0f96b97e599ecd931b7ae8a143e096e>`_.
3179
3180 18.4
3181 ----
3182
3183 * Issue #446: Test command now always invokes unittest, even
3184   if no test suite is supplied.
3185
3186 18.3.2
3187 ------
3188
3189 * Correct another regression in setuptools.findall
3190   where the fix for Python #12885 was lost.
3191
3192 18.3.1
3193 ------
3194
3195 * Issue #425: Correct regression in setuptools.findall.
3196
3197 18.3
3198 ----
3199
3200 * BB Pull Request #135: Setuptools now allows disabling of
3201   the manipulation of the sys.path
3202   during the processing of the easy-install.pth file. To do so, set
3203   the environment variable ``SETUPTOOLS_SYS_PATH_TECHNIQUE`` to
3204   anything but "rewrite" (consider "raw"). During any install operation
3205   with manipulation disabled, setuptools packages will be appended to
3206   sys.path naturally.
3207
3208   Future versions may change the default behavior to disable
3209   manipulation. If so, the default behavior can be retained by setting
3210   the variable to "rewrite".
3211
3212 * Issue #257: ``easy_install --version`` now shows more detail
3213   about the installation location and Python version.
3214
3215 * Refactor setuptools.findall in preparation for re-submission
3216   back to distutils.
3217
3218 18.2
3219 ----
3220
3221 * Issue #412: More efficient directory search in ``find_packages``.
3222
3223 18.1
3224 ----
3225
3226 * Upgrade to vendored packaging 15.3.
3227
3228 18.0.1
3229 ------
3230
3231 * Issue #401: Fix failure in test suite.
3232
3233 18.0
3234 ----
3235
3236 * Dropped support for builds with Pyrex. Only Cython is supported.
3237 * Issue #288: Detect Cython later in the build process, after
3238   ``setup_requires`` dependencies are resolved.
3239   Projects backed by Cython can now be readily built
3240   with a ``setup_requires`` dependency. For example::
3241
3242     ext = setuptools.Extension('mylib', ['src/CythonStuff.pyx', 'src/CStuff.c'])
3243     setuptools.setup(
3244         ...
3245         ext_modules=[ext],
3246         setup_requires=['cython'],
3247     )
3248
3249   For compatibility with older versions of setuptools, packagers should
3250   still include ``src/CythonMod.c`` in the source distributions or
3251   require that Cython be present before building source distributions.
3252   However, for systems with this build of setuptools, Cython will be
3253   downloaded on demand.
3254 * Issue #396: Fixed test failure on OS X.
3255 * BB Pull Request #136: Remove excessive quoting from shebang headers
3256   for Jython.
3257
3258 17.1.1
3259 ------
3260
3261 * Backed out unintended changes to pkg_resources, restoring removal of
3262   deprecated imp module (`ref
3263   <https://bitbucket.org/pypa/setuptools/commits/f572ec9563d647fa8d4ffc534f2af8070ea07a8b#comment-1881283>`_).
3264
3265 17.1
3266 ----
3267
3268 * Issue #380: Add support for range operators on environment
3269   marker evaluation.
3270
3271 17.0
3272 ----
3273
3274 * Issue #378: Do not use internal importlib._bootstrap module.
3275 * Issue #390: Disallow console scripts with path separators in
3276   the name. Removes unintended functionality and brings behavior
3277   into parity with pip.
3278
3279 16.0
3280 ----
3281
3282 * BB Pull Request #130: Better error messages for errors in
3283   parsed requirements.
3284 * BB Pull Request #133: Removed ``setuptools.tests`` from the
3285   installed packages.
3286 * BB Pull Request #129: Address deprecation warning due to usage
3287   of imp module.
3288
3289 15.2
3290 ----
3291
3292 * Issue #373: Provisionally expose
3293   ``pkg_resources._initialize_master_working_set``, allowing for
3294   imperative re-initialization of the master working set.
3295
3296 15.1
3297 ----
3298
3299 * Updated to Packaging 15.1 to address Packaging #28.
3300 * Fix ``setuptools.sandbox._execfile()`` with Python 3.1.
3301
3302 15.0
3303 ----
3304
3305 * BB Pull Request #126: DistributionNotFound message now lists the package or
3306   packages that required it. E.g.::
3307
3308       pkg_resources.DistributionNotFound: The 'colorama>=0.3.1' distribution was not found and is required by smlib.log.
3309
3310   Note that zc.buildout once dependended on the string rendering of this
3311   message to determine the package that was not found. This expectation
3312   has since been changed, but older versions of buildout may experience
3313   problems. See Buildout #242 for details.
3314
3315 14.3.1
3316 ------
3317
3318 * Issue #307: Removed PEP-440 warning during parsing of versions
3319   in ``pkg_resources.Distribution``.
3320 * Issue #364: Replace deprecated usage with recommended usage of
3321   ``EntryPoint.load``.
3322
3323 14.3
3324 ----
3325
3326 * Issue #254: When creating temporary egg cache on Unix, use mode 755
3327   for creating the directory to avoid the subsequent warning if
3328   the directory is group writable.
3329
3330 14.2
3331 ----
3332
3333 * Issue #137: Update ``Distribution.hashcmp`` so that Distributions with
3334   None for pyversion or platform can be compared against Distributions
3335   defining those attributes.
3336
3337 14.1.1
3338 ------
3339
3340 * Issue #360: Removed undesirable behavior from test runs, preventing
3341   write tests and installation to system site packages.
3342
3343 14.1
3344 ----
3345
3346 * BB Pull Request #125: Add ``__ne__`` to Requirement class.
3347 * Various refactoring of easy_install.
3348
3349 14.0
3350 ----
3351
3352 * Bootstrap script now accepts ``--to-dir`` to customize save directory or
3353   allow for re-use of existing repository of setuptools versions. See
3354   BB Pull Request #112 for background.
3355 * Issue #285: ``easy_install`` no longer will default to installing
3356   packages to the "user site packages" directory if it is itself installed
3357   there. Instead, the user must pass ``--user`` in all cases to install
3358   packages to the user site packages.
3359   This behavior now matches that of "pip install". To configure
3360   an environment to always install to the user site packages, consider
3361   using the "install-dir" and "scripts-dir" parameters to easy_install
3362   through an appropriate distutils config file.
3363
3364 13.0.2
3365 ------
3366
3367 * Issue #359: Include pytest.ini in the sdist so invocation of py.test on the
3368   sdist honors the pytest configuration.
3369
3370 13.0.1
3371 ------
3372
3373 Re-release of 13.0. Intermittent connectivity issues caused the release
3374 process to fail and PyPI uploads no longer accept files for 13.0.
3375
3376 13.0
3377 ----
3378
3379 * Issue #356: Back out BB Pull Request #119 as it requires Setuptools 10 or later
3380   as the source during an upgrade.
3381 * Removed build_py class from setup.py. According to 892f439d216e, this
3382   functionality was added to support upgrades from old Distribute versions,
3383   0.6.5 and 0.6.6.
3384
3385 12.4
3386 ----
3387
3388 * BB Pull Request #119: Restore writing of ``setup_requires`` to metadata
3389   (previously added in 8.4 and removed in 9.0).
3390
3391 12.3
3392 ----
3393
3394 * Documentation is now linked using the rst.linker package.
3395 * Fix ``setuptools.command.easy_install.extract_wininst_cfg()``
3396   with Python 2.6 and 2.7.
3397 * Issue #354. Added documentation on building setuptools
3398   documentation.
3399
3400 12.2
3401 ----
3402
3403 * Issue #345: Unload all modules under pkg_resources during
3404   ``ez_setup.use_setuptools()``.
3405 * Issue #336: Removed deprecation from ``ez_setup.use_setuptools``,
3406   as it is clearly still used by buildout's bootstrap. ``ez_setup``
3407   remains deprecated for use by individual packages.
3408 * Simplified implementation of ``ez_setup.use_setuptools``.
3409
3410 12.1
3411 ----
3412
3413 * BB Pull Request #118: Soften warning for non-normalized versions in
3414   Distribution.
3415
3416 12.0.5
3417 ------
3418
3419 * Issue #339: Correct Attribute reference in ``cant_write_to_target``.
3420 * Issue #336: Deprecated ``ez_setup.use_setuptools``.
3421
3422 12.0.4
3423 ------
3424
3425 * Issue #335: Fix script header generation on Windows.
3426
3427 12.0.3
3428 ------
3429
3430 * Fixed incorrect class attribute in ``install_scripts``. Tests would be nice.
3431
3432 12.0.2
3433 ------
3434
3435 * Issue #331: Fixed ``install_scripts`` command on Windows systems corrupting
3436   the header.
3437
3438 12.0.1
3439 ------
3440
3441 * Restore ``setuptools.command.easy_install.sys_executable`` for pbr
3442   compatibility. For the future, tools should construct a CommandSpec
3443   explicitly.
3444
3445 12.0
3446 ----
3447
3448 * Issue #188: Setuptools now support multiple entities in the value for
3449   ``build.executable``, such that an executable of "/usr/bin/env my-python" may
3450   be specified. This means that systems with a specified executable whose name
3451   has spaces in the path must be updated to escape or quote that value.
3452 * Deprecated ``easy_install.ScriptWriter.get_writer``, replaced by ``.best()``
3453   with slightly different semantics (no force_windows flag).
3454
3455 11.3.1
3456 ------
3457
3458 * Issue #327: Formalize and restore support for any printable character in an
3459   entry point name.
3460
3461 11.3
3462 ----
3463
3464 * Expose ``EntryPoint.resolve`` in place of EntryPoint._load, implementing the
3465   simple, non-requiring load. Deprecated all uses of ``EntryPoint._load``
3466   except for calling with no parameters, which is just a shortcut for
3467   ``ep.require(); ep.resolve();``.
3468
3469   Apps currently invoking ``ep.load(require=False)`` should instead do the
3470   following if wanting to avoid the deprecating warning::
3471
3472     getattr(ep, "resolve", lambda: ep.load(require=False))()
3473
3474 11.2
3475 ----
3476
3477 * Pip #2326: Report deprecation warning at stacklevel 2 for easier diagnosis.
3478
3479 11.1
3480 ----
3481
3482 * Issue #281: Since Setuptools 6.1 (Issue #268), a ValueError would be raised
3483   in certain cases where VersionConflict was raised with two arguments, which
3484   occurred in ``pkg_resources.WorkingSet.find``. This release adds support
3485   for indicating the dependent packages while maintaining support for
3486   a VersionConflict when no dependent package context is known. New unit tests
3487   now capture the expected interface.
3488
3489 11.0
3490 ----
3491
3492 * Interop #3: Upgrade to Packaging 15.0; updates to PEP 440 so that >1.7 does
3493   not exclude 1.7.1 but does exclude 1.7.0 and 1.7.0.post1.
3494
3495 10.2.1
3496 ------
3497
3498 * Issue #323: Fix regression in entry point name parsing.
3499
3500 10.2
3501 ----
3502
3503 * Deprecated use of EntryPoint.load(require=False). Passing a boolean to a
3504   function to select behavior is an anti-pattern. Instead use
3505   ``Entrypoint._load()``.
3506 * Substantial refactoring of all unit tests. Tests are now much leaner and
3507   re-use a lot of fixtures and contexts for better clarity of purpose.
3508
3509 10.1
3510 ----
3511
3512 * Issue #320: Added a compatibility implementation of
3513   ``sdist._default_revctrl``
3514   so that systems relying on that interface do not fail (namely, Ubuntu 12.04
3515   and similar Debian releases).
3516
3517 10.0.1
3518 ------
3519
3520 * Issue #319: Fixed issue installing pure distutils packages.
3521
3522 10.0
3523 ----
3524
3525 * Issue #313: Removed built-in support for subversion. Projects wishing to
3526   retain support for subversion will need to use a third party library. The
3527   extant implementation is being ported to `setuptools_svn
3528   <https://pypi.org/project/setuptools_svn/>`_.
3529 * Issue #315: Updated setuptools to hide its own loaded modules during
3530   installation of another package. This change will enable setuptools to
3531   upgrade (or downgrade) itself even when its own metadata and implementation
3532   change.
3533
3534 9.1
3535 ---
3536
3537 * Prefer vendored packaging library `as recommended
3538   <https://github.com/pypa/setuptools/commit/170657b68f4b92e7e1bf82f5e19a831f5744af67>`_.
3539
3540 9.0.1
3541 -----
3542
3543 * Issue #312: Restored presence of pkg_resources API tests (doctest) to sdist.
3544
3545 9.0
3546 ---
3547
3548 * Issue #314: Disabled support for ``setup_requires`` metadata to avoid issue
3549   where Setuptools was unable to upgrade over earlier versions.
3550
3551 8.4
3552 ---
3553
3554 * BB Pull Request #106: Now write ``setup_requires`` metadata.
3555
3556 8.3
3557 ---
3558
3559 * Issue #311: Decoupled pkg_resources from setuptools once again.
3560   ``pkg_resources`` is now a package instead of a module.
3561
3562 8.2.1
3563 -----
3564
3565 * Issue #306: Suppress warnings about Version format except in select scenarios
3566   (such as installation).
3567
3568 8.2
3569 ---
3570
3571 * BB Pull Request #85: Search egg-base when adding egg-info to manifest.
3572
3573 8.1
3574 ---
3575
3576 * Upgrade ``packaging`` to 14.5, giving preference to "rc" as designator for
3577   release candidates over "c".
3578 * PEP-440 warnings are now raised as their own class,
3579   ``pkg_resources.PEP440Warning``, instead of RuntimeWarning.
3580 * Disabled warnings on empty versions.
3581
3582 8.0.4
3583 -----
3584
3585 * Upgrade ``packaging`` to 14.4, fixing an error where there is a
3586   different result for if 2.0.5 is contained within >2.0dev and >2.0.dev even
3587   though normalization rules should have made them equal.
3588 * Issue #296: Add warning when a version is parsed as legacy. This warning will
3589   make it easier for developers to recognize deprecated version numbers.
3590
3591 8.0.3
3592 -----
3593
3594 * Issue #296: Restored support for ``__hash__`` on parse_version results.
3595
3596 8.0.2
3597 -----
3598
3599 * Issue #296: Restored support for ``__getitem__`` and sort operations on
3600   parse_version result.
3601
3602 8.0.1
3603 -----
3604
3605 * Issue #296: Restore support for iteration over parse_version result, but
3606   deprecated that usage with a warning. Fixes failure with buildout.
3607
3608 8.0
3609 ---
3610
3611 * Implement PEP 440 within
3612   pkg_resources and setuptools. This change
3613   deprecates some version numbers such that they will no longer be installable
3614   without using the ``===`` escape hatch. See `the changes to test_resources
3615   <https://bitbucket.org/pypa/setuptools/commits/dcd552da643c4448056de84c73d56da6d70769d5#chg-setuptools/tests/test_resources.py>`_
3616   for specific examples of version numbers and specifiers that are no longer
3617   supported. Setuptools now "vendors" the `packaging
3618   <https://github.com/pypa/packaging>`_ library.
3619
3620 7.0
3621 ---
3622
3623 * Issue #80, Issue #209: Eggs that are downloaded for ``setup_requires``,
3624   ``test_requires``, etc. are now placed in a ``./.eggs`` directory instead of
3625   directly in the current directory. This choice of location means the files
3626   can be readily managed (removed, ignored). Additionally,
3627   later phases or invocations of setuptools will not detect the package as
3628   already installed and ignore it for permanent install (See #209).
3629
3630   This change is indicated as backward-incompatible as installations that
3631   depend on the installation in the current directory will need to account for
3632   the new location. Systems that ignore ``*.egg`` will probably need to be
3633   adapted to ignore ``.eggs``. The files will need to be manually moved or
3634   will be retrieved again. Most use cases will require no attention.
3635
3636 6.1
3637 ---
3638
3639 * Issue #268: When resolving package versions, a VersionConflict now reports
3640   which package previously required the conflicting version.
3641
3642 6.0.2
3643 -----
3644
3645 * Issue #262: Fixed regression in pip install due to egg-info directories
3646   being omitted. Re-opens Issue #118.
3647
3648 6.0.1
3649 -----
3650
3651 * Issue #259: Fixed regression with namespace package handling on ``single
3652   version, externally managed`` installs.
3653
3654 6.0
3655 ---
3656
3657 * Issue #100: When building a distribution, Setuptools will no longer match
3658   default files using platform-dependent case sensitivity, but rather will
3659   only match the files if their case matches exactly. As a result, on Windows
3660   and other case-insensitive file systems, files with names such as
3661   'readme.txt' or 'README.TXT' will be omitted from the distribution and a
3662   warning will be issued indicating that 'README.txt' was not found. Other
3663   filenames affected are:
3664
3665     - README.rst
3666     - README
3667     - setup.cfg
3668     - setup.py (or the script name)
3669     - test/test*.py
3670
3671   Any users producing distributions with filenames that match those above
3672   case-insensitively, but not case-sensitively, should rename those files in
3673   their repository for better portability.
3674 * BB Pull Request #72: When using ``single_version_externally_managed``, the
3675   exclusion list now includes Python 3.2 ``__pycache__`` entries.
3676 * BB Pull Request #76 and BB Pull Request #78: lines in top_level.txt are now
3677   ordered deterministically.
3678 * Issue #118: The egg-info directory is now no longer included in the list
3679   of outputs.
3680 * Issue #258: Setuptools now patches distutils msvc9compiler to
3681   recognize the specially-packaged compiler package for easy extension module
3682   support on Python 2.6, 2.7, and 3.2.
3683
3684 5.8
3685 ---
3686
3687 * Issue #237: ``pkg_resources`` now uses explicit detection of Python 2 vs.
3688   Python 3, supporting environments where builtins have been patched to make
3689   Python 3 look more like Python 2.
3690
3691 5.7
3692 ---
3693
3694 * Issue #240: Based on real-world performance measures against 5.4, zip
3695   manifests are now cached in all circumstances. The
3696   ``PKG_RESOURCES_CACHE_ZIP_MANIFESTS`` environment variable is no longer
3697   relevant. The observed "memory increase" referenced in the 5.4 release
3698   notes and detailed in Issue #154 was likely not an increase over the status
3699   quo, but rather only an increase over not storing the zip info at all.
3700
3701 5.6
3702 ---
3703
3704 * Issue #242: Use absolute imports in svn_utils to avoid issues if the
3705   installing package adds an xml module to the path.
3706
3707 5.5.1
3708 -----
3709
3710 * Issue #239: Fix typo in 5.5 such that fix did not take.
3711
3712 5.5
3713 ---
3714
3715 * Issue #239: Setuptools now includes the setup_requires directive on
3716   Distribution objects and validates the syntax just like install_requires
3717   and tests_require directives.
3718
3719 5.4.2
3720 -----
3721
3722 * Issue #236: Corrected regression in execfile implementation for Python 2.6.
3723
3724 5.4.1
3725 -----
3726
3727 * Python #7776: (ssl_support) Correct usage of host for validation when
3728   tunneling for HTTPS.
3729
3730 5.4
3731 ---
3732
3733 * Issue #154: ``pkg_resources`` will now cache the zip manifests rather than
3734   re-processing the same file from disk multiple times, but only if the
3735   environment variable ``PKG_RESOURCES_CACHE_ZIP_MANIFESTS`` is set. Clients
3736   that package many modules in the same zip file will see some improvement
3737   in startup time by enabling this feature. This feature is not enabled by
3738   default because it causes a substantial increase in memory usage.
3739
3740 5.3
3741 ---
3742
3743 * Issue #185: Make svn tagging work on the new style SVN metadata.
3744   Thanks cazabon!
3745 * Prune revision control directories (e.g .svn) from base path
3746   as well as sub-directories.
3747
3748 5.2
3749 ---
3750
3751 * Added a `Developer Guide
3752   <https://setuptools.pypa.io/en/latest/developer-guide.html>`_ to the official
3753   documentation.
3754 * Some code refactoring and cleanup was done with no intended behavioral
3755   changes.
3756 * During install_egg_info, the generated lines for namespace package .pth
3757   files are now processed even during a dry run.
3758
3759 5.1
3760 ---
3761
3762 * Issue #202: Implemented more robust cache invalidation for the ZipImporter,
3763   building on the work in Issue #168. Special thanks to Jurko Gospodnetic and
3764   PJE.
3765
3766 5.0.2
3767 -----
3768
3769 * Issue #220: Restored script templates.
3770
3771 5.0.1
3772 -----
3773
3774 * Renamed script templates to end with .tmpl now that they no longer need
3775   to be processed by 2to3. Fixes spurious syntax errors during build/install.
3776
3777 5.0
3778 ---
3779
3780 * Issue #218: Re-release of 3.8.1 to signal that it supersedes 4.x.
3781 * Incidentally, script templates were updated not to include the triple-quote
3782   escaping.
3783
3784 3.7.1 and 3.8.1 and 4.0.1
3785 -------------------------
3786
3787 * Issue #213: Use legacy StringIO behavior for compatibility under pbr.
3788 * Issue #218: Setuptools 3.8.1 superseded 4.0.1, and 4.x was removed
3789   from the available versions to install.
3790
3791 4.0
3792 ---
3793
3794 * Issue #210: ``setup.py develop`` now copies scripts in binary mode rather
3795   than text mode, matching the behavior of the ``install`` command.
3796
3797 3.8
3798 ---
3799
3800 * Extend Issue #197 workaround to include all Python 3 versions prior to
3801   3.2.2.
3802
3803 3.7
3804 ---
3805
3806 * Issue #193: Improved handling of Unicode filenames when building manifests.
3807
3808 3.6
3809 ---
3810
3811 * Issue #203: Honor proxy settings for Powershell downloader in the bootstrap
3812   routine.
3813
3814 3.5.2
3815 -----
3816
3817 * Issue #168: More robust handling of replaced zip files and stale caches.
3818   Fixes ZipImportError complaining about a 'bad local header'.
3819
3820 3.5.1
3821 -----
3822
3823 * Issue #199: Restored ``install._install`` for compatibility with earlier
3824   NumPy versions.
3825
3826 3.5
3827 ---
3828
3829 * Issue #195: Follow symbolic links in find_packages (restoring behavior
3830   broken in 3.4).
3831 * Issue #197: On Python 3.1, PKG-INFO is now saved in a UTF-8 encoding instead
3832   of ``sys.getpreferredencoding`` to match the behavior on Python 2.6-3.4.
3833 * Issue #192: Preferred bootstrap location is now
3834   https://bootstrap.pypa.io/ez_setup.py (mirrored from former location).
3835
3836 3.4.4
3837 -----
3838
3839 * Issue #184: Correct failure where find_package over-matched packages
3840   when directory traversal isn't short-circuited.
3841
3842 3.4.3
3843 -----
3844
3845 * Issue #183: Really fix test command with Python 3.1.
3846
3847 3.4.2
3848 -----
3849
3850 * Issue #183: Fix additional regression in test command on Python 3.1.
3851
3852 3.4.1
3853 -----
3854
3855 * Issue #180: Fix regression in test command not caught by py.test-run tests.
3856
3857 3.4
3858 ---
3859
3860 * Issue #176: Add parameter to the test command to support a custom test
3861   runner: --test-runner or -r.
3862 * Issue #177: Now assume most common invocation to install command on
3863   platforms/environments without stack support (issuing a warning). Setuptools
3864   now installs naturally on IronPython. Behavior on CPython should be
3865   unchanged.
3866
3867 3.3
3868 ---
3869
3870 * Add ``include`` parameter to ``setuptools.find_packages()``.
3871
3872 3.2
3873 ---
3874
3875 * BB Pull Request #39: Add support for C++ targets from Cython ``.pyx`` files.
3876 * Issue #162: Update dependency on certifi to 1.0.1.
3877 * Issue #164: Update dependency on wincertstore to 0.2.
3878
3879 3.1
3880 ---
3881
3882 * Issue #161: Restore Features functionality to allow backward compatibility
3883   (for Features) until the uses of that functionality is sufficiently removed.
3884
3885 3.0.2
3886 -----
3887
3888 * Correct typo in previous bugfix.
3889
3890 3.0.1
3891 -----
3892
3893 * Issue #157: Restore support for Python 2.6 in bootstrap script where
3894   ``zipfile.ZipFile`` does not yet have support for context managers.
3895
3896 3.0
3897 ---
3898
3899 * Issue #125: Prevent Subversion support from creating a ~/.subversion
3900   directory just for checking the presence of a Subversion repository.
3901 * Issue #12: Namespace packages are now imported lazily. That is, the mere
3902   declaration of a namespace package in an egg on ``sys.path`` no longer
3903   causes it to be imported when ``pkg_resources`` is imported. Note that this
3904   change means that all of a namespace package's ``__init__.py`` files must
3905   include a ``declare_namespace()`` call in order to ensure that they will be
3906   handled properly at runtime. In 2.x it was possible to get away without
3907   including the declaration, but only at the cost of forcing namespace
3908   packages to be imported early, which 3.0 no longer does.
3909 * Issue #148: When building (bdist_egg), setuptools no longer adds
3910   ``__init__.py`` files to namespace packages. Any packages that rely on this
3911   behavior will need to create ``__init__.py`` files and include the
3912   ``declare_namespace()``.
3913 * Issue #7: Setuptools itself is now distributed as a zip archive in addition to
3914   tar archive. ez_setup.py now uses zip archive. This approach avoids the potential
3915   security vulnerabilities presented by use of tar archives in ez_setup.py.
3916   It also leverages the security features added to ZipFile.extract in Python 2.7.4.
3917 * Issue #65: Removed deprecated Features functionality.
3918 * BB Pull Request #28: Remove backport of ``_bytecode_filenames`` which is
3919   available in Python 2.6 and later, but also has better compatibility with
3920   Python 3 environments.
3921 * Issue #156: Fix spelling of __PYVENV_LAUNCHER__ variable.
3922
3923 2.2
3924 ---
3925
3926 * Issue #141: Restored fix for allowing setup_requires dependencies to
3927   override installed dependencies during setup.
3928 * Issue #128: Fixed issue where only the first dependency link was honored
3929   in a distribution where multiple dependency links were supplied.
3930
3931 2.1.2
3932 -----
3933
3934 * Issue #144: Read long_description using codecs module to avoid errors
3935   installing on systems where LANG=C.
3936
3937 2.1.1
3938 -----
3939
3940 * Issue #139: Fix regression in re_finder for CVS repos (and maybe Git repos
3941   as well).
3942
3943 2.1
3944 ---
3945
3946 * Issue #129: Suppress inspection of ``*.whl`` files when searching for files
3947   in a zip-imported file.
3948 * Issue #131: Fix RuntimeError when constructing an egg fetcher.
3949
3950 2.0.2
3951 -----
3952
3953 * Fix NameError during installation with Python implementations (e.g. Jython)
3954   not containing parser module.
3955 * Fix NameError in ``sdist:re_finder``.
3956
3957 2.0.1
3958 -----
3959
3960 * Issue #124: Fixed error in list detection in upload_docs.
3961
3962 2.0
3963 ---
3964
3965 * Issue #121: Exempt lib2to3 pickled grammars from DirectorySandbox.
3966 * Issue #41: Dropped support for Python 2.4 and Python 2.5. Clients requiring
3967   setuptools for those versions of Python should use setuptools 1.x.
3968 * Removed ``setuptools.command.easy_install.HAS_USER_SITE``. Clients
3969   expecting this boolean variable should use ``site.ENABLE_USER_SITE``
3970   instead.
3971 * Removed ``pkg_resources.ImpWrapper``. Clients that expected this class
3972   should use ``pkgutil.ImpImporter`` instead.
3973
3974 1.4.2
3975 -----
3976
3977 * Issue #116: Correct TypeError when reading a local package index on Python
3978   3.
3979
3980 1.4.1
3981 -----
3982
3983 * Issue #114: Use ``sys.getfilesystemencoding`` for decoding config in
3984   ``bdist_wininst`` distributions.
3985
3986 * Issue #105 and Issue #113: Establish a more robust technique for
3987   determining the terminal encoding::
3988
3989     1. Try ``getpreferredencoding``
3990     2. If that returns US_ASCII or None, try the encoding from
3991        ``getdefaultlocale``. If that encoding was a "fallback" because Python
3992        could not figure it out from the environment or OS, encoding remains
3993        unresolved.
3994     3. If the encoding is resolved, then make sure Python actually implements
3995        the encoding.
3996     4. On the event of an error or unknown codec, revert to fallbacks
3997        (UTF-8 on Darwin, ASCII on everything else).
3998     5. On the encoding is 'mac-roman' on Darwin, use UTF-8 as 'mac-roman' was
3999        a bug on older Python releases.
4000
4001     On a side note, it would seem that the encoding only matters for when SVN
4002     does not yet support ``--xml`` and when getting repository and svn version
4003     numbers. The ``--xml`` technique should yield UTF-8 according to some
4004     messages on the SVN mailing lists. So if the version numbers are always
4005     7-bit ASCII clean, it may be best to only support the file parsing methods
4006     for legacy SVN releases and support for SVN without the subprocess command
4007     would simple go away as support for the older SVNs does.
4008
4009 1.4
4010 ---
4011
4012 * Issue #27: ``easy_install`` will now use credentials from .pypirc if
4013   present for connecting to the package index.
4014 * BB Pull Request #21: Omit unwanted newlines in ``package_index._encode_auth``
4015   when the username/password pair length indicates wrapping.
4016
4017 1.3.2
4018 -----
4019
4020 * Issue #99: Fix filename encoding issues in SVN support.
4021
4022 1.3.1
4023 -----
4024
4025 * Remove exuberant warning in SVN support when SVN is not used.
4026
4027 1.3
4028 ---
4029
4030 * Address security vulnerability in SSL match_hostname check as reported in
4031   Python #17997.
4032 * Prefer `backports.ssl_match_hostname
4033   <https://pypi.org/project/backports.ssl_match_hostname/>`_ for backport
4034   implementation if present.
4035 * Correct NameError in ``ssl_support`` module (``socket.error``).
4036
4037 1.2
4038 ---
4039
4040 * Issue #26: Add support for SVN 1.7. Special thanks to Philip Thiem for the
4041   contribution.
4042 * Issue #93: Wheels are now distributed with every release. Note that as
4043   reported in Issue #108, as of Pip 1.4, scripts aren't installed properly
4044   from wheels. Therefore, if using Pip to install setuptools from a wheel,
4045   the ``easy_install`` command will not be available.
4046 * Setuptools "natural" launcher support, introduced in 1.0, is now officially
4047   supported.
4048
4049 1.1.7
4050 -----
4051
4052 * Fixed behavior of NameError handling in 'script template (dev).py' (script
4053   launcher for 'develop' installs).
4054 * ``ez_setup.py`` now ensures partial downloads are cleaned up following
4055   a failed download.
4056 * Distribute #363 and Issue #55: Skip an sdist test that fails on locales
4057   other than UTF-8.
4058
4059 1.1.6
4060 -----
4061
4062 * Distribute #349: ``sandbox.execfile`` now opens the target file in binary
4063   mode, thus honoring a BOM in the file when compiled.
4064
4065 1.1.5
4066 -----
4067
4068 * Issue #69: Second attempt at fix (logic was reversed).
4069
4070 1.1.4
4071 -----
4072
4073 * Issue #77: Fix error in upload command (Python 2.4).
4074
4075 1.1.3
4076 -----
4077
4078 * Fix NameError in previous patch.
4079
4080 1.1.2
4081 -----
4082
4083 * Issue #69: Correct issue where 404 errors are returned for URLs with
4084   fragments in them (such as #egg=).
4085
4086 1.1.1
4087 -----
4088
4089 * Issue #75: Add ``--insecure`` option to ez_setup.py to accommodate
4090   environments where a trusted SSL connection cannot be validated.
4091 * Issue #76: Fix AttributeError in upload command with Python 2.4.
4092
4093 1.1
4094 ---
4095
4096 * Issue #71 (Distribute #333): EasyInstall now puts less emphasis on the
4097   condition when a host is blocked via ``--allow-hosts``.
4098 * Issue #72: Restored Python 2.4 compatibility in ``ez_setup.py``.
4099
4100 1.0
4101 ---
4102
4103 * Issue #60: On Windows, Setuptools supports deferring to another launcher,
4104   such as Vinay Sajip's `pylauncher <https://bitbucket.org/pypa/pylauncher>`_
4105   (included with Python 3.3) to launch console and GUI scripts and not install
4106   its own launcher executables. This experimental functionality is currently
4107   only enabled if  the ``SETUPTOOLS_LAUNCHER`` environment variable is set to
4108   "natural". In the future, this behavior may become default, but only after
4109   it has matured and seen substantial adoption. The ``SETUPTOOLS_LAUNCHER``
4110   also accepts "executable" to force the default behavior of creating launcher
4111   executables.
4112 * Issue #63: Bootstrap script (ez_setup.py) now prefers Powershell, curl, or
4113   wget for retrieving the Setuptools tarball for improved security of the
4114   install. The script will still fall back to a simple ``urlopen`` on
4115   platforms that do not have these tools.
4116 * Issue #65: Deprecated the ``Features`` functionality.
4117 * Issue #52: In ``VerifyingHTTPSConn``, handle a tunnelled (proxied)
4118   connection.
4119
4120 Backward-Incompatible Changes
4121 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4122
4123 This release includes a couple of backward-incompatible changes, but most if
4124 not all users will find 1.0 a drop-in replacement for 0.9.
4125
4126 * Issue #50: Normalized API of environment marker support. Specifically,
4127   removed line number and filename from SyntaxErrors when returned from
4128   ``pkg_resources.invalid_marker``. Any clients depending on the specific
4129   string representation of exceptions returned by that function may need to
4130   be updated to account for this change.
4131 * Issue #50: SyntaxErrors generated by ``pkg_resources.invalid_marker`` are
4132   normalized for cross-implementation consistency.
4133 * Removed ``--ignore-conflicts-at-my-risk`` and ``--delete-conflicting``
4134   options to easy_install. These options have been deprecated since 0.6a11.
4135
4136 0.9.8
4137 -----
4138
4139 * Issue #53: Fix NameErrors in ``_vcs_split_rev_from_url``.
4140
4141 0.9.7
4142 -----
4143
4144 * Issue #49: Correct AttributeError on PyPy where a hashlib.HASH object does
4145   not have a ``.name`` attribute.
4146 * Issue #34: Documentation now refers to bootstrap script in code repository
4147   referenced by bookmark.
4148 * Add underscore-separated keys to environment markers (markerlib).
4149
4150 0.9.6
4151 -----
4152
4153 * Issue #44: Test failure on Python 2.4 when MD5 hash doesn't have a ``.name``
4154   attribute.
4155
4156 0.9.5
4157 -----
4158
4159 * Python #17980: Fix security vulnerability in SSL certificate validation.
4160
4161 0.9.4
4162 -----
4163
4164 * Issue #43: Fix issue (introduced in 0.9.1) with version resolution when
4165   upgrading over other releases of Setuptools.
4166
4167 0.9.3
4168 -----
4169
4170 * Issue #42: Fix new ``AttributeError`` introduced in last fix.
4171
4172 0.9.2
4173 -----
4174
4175 * Issue #42: Fix regression where blank checksums would trigger an
4176   ``AttributeError``.
4177
4178 0.9.1
4179 -----
4180
4181 * Distribute #386: Allow other positional and keyword arguments to os.open.
4182 * Corrected dependency on certifi mis-referenced in 0.9.
4183
4184 0.9
4185 ---
4186
4187 * ``package_index`` now validates hashes other than MD5 in download links.
4188
4189 0.8
4190 ---
4191
4192 * Code base now runs on Python 2.4 - Python 3.3 without Python 2to3
4193   conversion.
4194
4195 0.7.8
4196 -----
4197
4198 * Distribute #375: Yet another fix for yet another regression.
4199
4200 0.7.7
4201 -----
4202
4203 * Distribute #375: Repair AttributeError created in last release (redo).
4204 * Issue #30: Added test for get_cache_path.
4205
4206 0.7.6
4207 -----
4208
4209 * Distribute #375: Repair AttributeError created in last release.
4210
4211 0.7.5
4212 -----
4213
4214 * Issue #21: Restore Python 2.4 compatibility in ``test_easy_install``.
4215 * Distribute #375: Merged additional warning from Distribute 0.6.46.
4216 * Now honor the environment variable
4217   ``SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT`` in addition to the now
4218   deprecated ``DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT``.
4219
4220 0.7.4
4221 -----
4222
4223 * Issue #20: Fix comparison of parsed SVN version on Python 3.
4224
4225 0.7.3
4226 -----
4227
4228 * Issue #1: Disable installation of Windows-specific files on non-Windows systems.
4229 * Use new sysconfig module with Python 2.7 or >=3.2.
4230
4231 0.7.2
4232 -----
4233
4234 * Issue #14: Use markerlib when the ``parser`` module is not available.
4235 * Issue #10: ``ez_setup.py`` now uses HTTPS to download setuptools from PyPI.
4236
4237 0.7.1
4238 -----
4239
4240 * Fix NameError (Issue #3) again - broken in bad merge.
4241
4242 0.7
4243 ---
4244
4245 * Merged Setuptools and Distribute. See docs/merge.txt for details.
4246
4247 Added several features that were slated for setuptools 0.6c12:
4248
4249 * Index URL now defaults to HTTPS.
4250 * Added experimental environment marker support. Now clients may designate a
4251   PEP-426 environment marker for "extra" dependencies. Setuptools uses this
4252   feature in ``setup.py`` for optional SSL and certificate validation support
4253   on older platforms. Based on Distutils-SIG discussions, the syntax is
4254   somewhat tentative. There should probably be a PEP with a firmer spec before
4255   the feature should be considered suitable for use.
4256 * Added support for SSL certificate validation when installing packages from
4257   an HTTPS service.
4258
4259 0.7b4
4260 -----
4261
4262 * Issue #3: Fixed NameError in SSL support.
4263
4264 0.6.49
4265 ------
4266
4267 * Move warning check in ``get_cache_path`` to follow the directory creation
4268   to avoid errors when the cache path does not yet exist. Fixes the error
4269   reported in Distribute #375.
4270
4271 0.6.48
4272 ------
4273
4274 * Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
4275   0.6.46 (redo).
4276
4277 0.6.47
4278 ------
4279
4280 * Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
4281   0.6.46.
4282
4283 0.6.46
4284 ------
4285
4286 * Distribute #375: Issue a warning if the PYTHON_EGG_CACHE or otherwise
4287   customized egg cache location specifies a directory that's group- or
4288   world-writable.
4289
4290 0.6.45
4291 ------
4292
4293 * Distribute #379: ``distribute_setup.py`` now traps VersionConflict as well,
4294   restoring ability to upgrade from an older setuptools version.
4295
4296 0.6.44
4297 ------
4298
4299 * ``distribute_setup.py`` has been updated to allow Setuptools 0.7 to
4300   satisfy use_setuptools.
4301
4302 0.6.43
4303 ------
4304
4305 * Distribute #378: Restore support for Python 2.4 Syntax (regression in 0.6.42).
4306
4307 0.6.42
4308 ------
4309
4310 * External links finder no longer yields duplicate links.
4311 * Distribute #337: Moved site.py to setuptools/site-patch.py (graft of very old
4312   patch from setuptools trunk which inspired PR #31).
4313
4314 0.6.41
4315 ------
4316
4317 * Distribute #27: Use public api for loading resources from zip files rather than
4318   the private method ``_zip_directory_cache``.
4319 * Added a new function ``easy_install.get_win_launcher`` which may be used by
4320   third-party libraries such as buildout to get a suitable script launcher.
4321
4322 0.6.40
4323 ------
4324
4325 * Distribute #376: brought back cli.exe and gui.exe that were deleted in the
4326   previous release.
4327
4328 0.6.39
4329 ------
4330
4331 * Add support for console launchers on ARM platforms.
4332 * Fix possible issue in GUI launchers where the subsystem was not supplied to
4333   the linker.
4334 * Launcher build script now refactored for robustness.
4335 * Distribute #375: Resources extracted from a zip egg to the file system now also
4336   check the contents of the file against the zip contents during each
4337   invocation of get_resource_filename.
4338
4339 0.6.38
4340 ------
4341
4342 * Distribute #371: The launcher manifest file is now installed properly.
4343
4344 0.6.37
4345 ------
4346
4347 * Distribute #143: Launcher scripts, including easy_install itself, are now
4348   accompanied by a manifest on 32-bit Windows environments to avoid the
4349   Installer Detection Technology and thus undesirable UAC elevation described
4350   in `this Microsoft article
4351   <http://technet.microsoft.com/en-us/library/cc709628%28WS.10%29.aspx>`_.
4352
4353 0.6.36
4354 ------
4355
4356 * BB Pull Request #35: In Buildout #64, it was reported that
4357   under Python 3, installation of distutils scripts could attempt to copy
4358   the ``__pycache__`` directory as a file, causing an error, apparently only
4359   under Windows. Easy_install now skips all directories when processing
4360   metadata scripts.
4361
4362 0.6.35
4363 ------
4364
4365
4366 Note this release is backward-incompatible with distribute 0.6.23-0.6.34 in
4367 how it parses version numbers.
4368
4369 * Distribute #278: Restored compatibility with distribute 0.6.22 and setuptools
4370   0.6. Updated the documentation to match more closely with the version
4371   parsing as intended in setuptools 0.6.
4372
4373 0.6.34
4374 ------
4375
4376 * Distribute #341: 0.6.33 fails to build under Python 2.4.
4377
4378 0.6.33
4379 ------
4380
4381 * Fix 2 errors with Jython 2.5.
4382 * Fix 1 failure with Jython 2.5 and 2.7.
4383 * Disable workaround for Jython scripts on Linux systems.
4384 * Distribute #336: ``setup.py`` no longer masks failure exit code when tests fail.
4385 * Fix issue in pkg_resources where try/except around a platform-dependent
4386   import would trigger hook load failures on Mercurial. See pull request 32
4387   for details.
4388 * Distribute #341: Fix a ResourceWarning.
4389
4390 0.6.32
4391 ------
4392
4393 * Fix test suite with Python 2.6.
4394 * Fix some DeprecationWarnings and ResourceWarnings.
4395 * Distribute #335: Backed out ``setup_requires`` superseding installed requirements
4396   until regression can be addressed.
4397
4398 0.6.31
4399 ------
4400
4401 * Distribute #303: Make sure the manifest only ever contains UTF-8 in Python 3.
4402 * Distribute #329: Properly close files created by tests for compatibility with
4403   Jython.
4404 * Work around Jython #1980 and Jython #1981.
4405 * Distribute #334: Provide workaround for packages that reference ``sys.__stdout__``
4406   such as numpy does. This change should address
4407   `virtualenv #359 <https://github.com/pypa/virtualenv/issues/359>`_ as long
4408   as the system encoding is UTF-8 or the IO encoding is specified in the
4409   environment, i.e.::
4410
4411      PYTHONIOENCODING=utf8 pip install numpy
4412
4413 * Fix for encoding issue when installing from Windows executable on Python 3.
4414 * Distribute #323: Allow ``setup_requires`` requirements to supersede installed
4415   requirements. Added some new keyword arguments to existing pkg_resources
4416   methods. Also had to updated how __path__ is handled for namespace packages
4417   to ensure that when a new egg distribution containing a namespace package is
4418   placed on sys.path, the entries in __path__ are found in the same order they
4419   would have been in had that egg been on the path when pkg_resources was
4420   first imported.
4421
4422 0.6.30
4423 ------
4424
4425 * Distribute #328: Clean up temporary directories in distribute_setup.py.
4426 * Fix fatal bug in distribute_setup.py.
4427
4428 0.6.29
4429 ------
4430
4431 * BB Pull Request #14: Honor file permissions in zip files.
4432 * Distribute #327: Merged pull request #24 to fix a dependency problem with pip.
4433 * Merged pull request #23 to fix https://github.com/pypa/virtualenv/issues/301.
4434 * If Sphinx is installed, the ``upload_docs`` command now runs ``build_sphinx``
4435   to produce uploadable documentation.
4436 * Distribute #326: ``upload_docs`` provided mangled auth credentials under Python 3.
4437 * Distribute #320: Fix check for "creatable" in distribute_setup.py.
4438 * Distribute #305: Remove a warning that was triggered during normal operations.
4439 * Distribute #311: Print metadata in UTF-8 independent of platform.
4440 * Distribute #303: Read manifest file with UTF-8 encoding under Python 3.
4441 * Distribute #301: Allow to run tests of namespace packages when using 2to3.
4442 * Distribute #304: Prevent import loop in site.py under Python 3.3.
4443 * Distribute #283: Re-enable scanning of ``*.pyc`` / ``*.pyo`` files on Python 3.3.
4444 * Distribute #299: The develop command didn't work on Python 3, when using 2to3,
4445   as the egg link would go to the Python 2 source. Linking to the 2to3'd code
4446   in build/lib makes it work, although you will have to rebuild the module
4447   before testing it.
4448 * Distribute #306: Even if 2to3 is used, we build in-place under Python 2.
4449 * Distribute #307: Prints the full path when .svn/entries is broken.
4450 * Distribute #313: Support for sdist subcommands (Python 2.7)
4451 * Distribute #314: test_local_index() would fail an OS X.
4452 * Distribute #310: Non-ascii characters in a namespace __init__.py causes errors.
4453 * Distribute #218: Improved documentation on behavior of ``package_data`` and
4454   ``include_package_data``. Files indicated by ``package_data`` are now included
4455   in the manifest.
4456 * ``distribute_setup.py`` now allows a ``--download-base`` argument for retrieving
4457   distribute from a specified location.
4458
4459 0.6.28
4460 ------
4461
4462 * Distribute #294: setup.py can now be invoked from any directory.
4463 * Scripts are now installed honoring the umask.
4464 * Added support for .dist-info directories.
4465 * Distribute #283: Fix and disable scanning of ``*.pyc`` / ``*.pyo`` files on
4466   Python 3.3.
4467
4468 0.6.27
4469 ------
4470
4471 * Support current snapshots of CPython 3.3.
4472 * Distribute now recognizes README.rst as a standard, default readme file.
4473 * Exclude 'encodings' modules when removing modules from sys.modules.
4474   Workaround for #285.
4475 * Distribute #231: Don't fiddle with system python when used with buildout
4476   (bootstrap.py)
4477
4478 0.6.26
4479 ------
4480
4481 * Distribute #183: Symlinked files are now extracted from source distributions.
4482 * Distribute #227: Easy_install fetch parameters are now passed during the
4483   installation of a source distribution; now fulfillment of setup_requires
4484   dependencies will honor the parameters passed to easy_install.
4485
4486 0.6.25
4487 ------
4488
4489 * Distribute #258: Workaround a cache issue
4490 * Distribute #260: distribute_setup.py now accepts the --user parameter for
4491   Python 2.6 and later.
4492 * Distribute #262: package_index.open_with_auth no longer throws LookupError
4493   on Python 3.
4494 * Distribute #269: AttributeError when an exception occurs reading Manifest.in
4495   on late releases of Python.
4496 * Distribute #272: Prevent TypeError when namespace package names are unicode
4497   and single-install-externally-managed is used. Also fixes PIP issue
4498   449.
4499 * Distribute #273: Legacy script launchers now install with Python2/3 support.
4500
4501 0.6.24
4502 ------
4503
4504 * Distribute #249: Added options to exclude 2to3 fixers
4505
4506 0.6.23
4507 ------
4508
4509 * Distribute #244: Fixed a test
4510 * Distribute #243: Fixed a test
4511 * Distribute #239: Fixed a test
4512 * Distribute #240: Fixed a test
4513 * Distribute #241: Fixed a test
4514 * Distribute #237: Fixed a test
4515 * Distribute #238: easy_install now uses 64bit executable wrappers on 64bit Python
4516 * Distribute #208: Fixed parsed_versions, it now honors post-releases as noted in the documentation
4517 * Distribute #207: Windows cli and gui wrappers pass CTRL-C to child python process
4518 * Distribute #227: easy_install now passes its arguments to setup.py bdist_egg
4519 * Distribute #225: Fixed a NameError on Python 2.5, 2.4
4520
4521 0.6.21
4522 ------
4523
4524 * Distribute #225: FIxed a regression on py2.4
4525
4526 0.6.20
4527 ------
4528
4529 * Distribute #135: Include url in warning when processing URLs in package_index.
4530 * Distribute #212: Fix issue where easy_instal fails on Python 3 on windows installer.
4531 * Distribute #213: Fix typo in documentation.
4532
4533 0.6.19
4534 ------
4535
4536 * Distribute #206: AttributeError: 'HTTPMessage' object has no attribute 'getheaders'
4537
4538 0.6.18
4539 ------
4540
4541 * Distribute #210: Fixed a regression introduced by Distribute #204 fix.
4542
4543 0.6.17
4544 ------
4545
4546 * Support 'DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT' environment
4547   variable to allow to disable installation of easy_install-${version} script.
4548 * Support Python >=3.1.4 and >=3.2.1.
4549 * Distribute #204: Don't try to import the parent of a namespace package in
4550   declare_namespace
4551 * Distribute #196: Tolerate responses with multiple Content-Length headers
4552 * Distribute #205: Sandboxing doesn't preserve working_set. Leads to setup_requires
4553   problems.
4554
4555 0.6.16
4556 ------
4557
4558 * Builds sdist gztar even on Windows (avoiding Distribute #193).
4559 * Distribute #192: Fixed metadata omitted on Windows when package_dir
4560   specified with forward-slash.
4561 * Distribute #195: Cython build support.
4562 * Distribute #200: Issues with recognizing 64-bit packages on Windows.
4563
4564 0.6.15
4565 ------
4566
4567 * Fixed typo in bdist_egg
4568 * Several issues under Python 3 has been solved.
4569 * Distribute #146: Fixed missing DLL files after easy_install of windows exe package.
4570
4571 0.6.14
4572 ------
4573
4574 * Distribute #170: Fixed unittest failure. Thanks to Toshio.
4575 * Distribute #171: Fixed race condition in unittests cause deadlocks in test suite.
4576 * Distribute #143: Fixed a lookup issue with easy_install.
4577   Thanks to David and Zooko.
4578 * Distribute #174: Fixed the edit mode when its used with setuptools itself
4579
4580 0.6.13
4581 ------
4582
4583 * Distribute #160: 2.7 gives ValueError("Invalid IPv6 URL")
4584 * Distribute #150: Fixed using ~/.local even in a --no-site-packages virtualenv
4585 * Distribute #163: scan index links before external links, and don't use the md5 when
4586   comparing two distributions
4587
4588 0.6.12
4589 ------
4590
4591 * Distribute #149: Fixed various failures on 2.3/2.4
4592
4593 0.6.11
4594 ------
4595
4596 * Found another case of SandboxViolation - fixed
4597 * Distribute #15 and Distribute #48: Introduced a socket timeout of 15 seconds on url openings
4598 * Added indexsidebar.html into MANIFEST.in
4599 * Distribute #108: Fixed TypeError with Python3.1
4600 * Distribute #121: Fixed --help install command trying to actually install.
4601 * Distribute #112: Added an os.makedirs so that Tarek's solution will work.
4602 * Distribute #133: Added --no-find-links to easy_install
4603 * Added easy_install --user
4604 * Distribute #100: Fixed develop --user not taking '.' in PYTHONPATH into account
4605 * Distribute #134: removed spurious UserWarnings. Patch by VanLindberg
4606 * Distribute #138: cant_write_to_target error when setup_requires is used.
4607 * Distribute #147: respect the sys.dont_write_bytecode flag
4608
4609 0.6.10
4610 ------
4611
4612 * Reverted change made for the DistributionNotFound exception because
4613   zc.buildout uses the exception message to get the name of the
4614   distribution.
4615
4616 0.6.9
4617 -----
4618
4619 * Distribute #90: unknown setuptools version can be added in the working set
4620 * Distribute #87: setupt.py doesn't try to convert distribute_setup.py anymore
4621   Initial Patch by arfrever.
4622 * Distribute #89: added a side bar with a download link to the doc.
4623 * Distribute #86: fixed missing sentence in pkg_resources doc.
4624 * Added a nicer error message when a DistributionNotFound is raised.
4625 * Distribute #80: test_develop now works with Python 3.1
4626 * Distribute #93: upload_docs now works if there is an empty sub-directory.
4627 * Distribute #70: exec bit on non-exec files
4628 * Distribute #99: now the standalone easy_install command doesn't uses a
4629   "setup.cfg" if any exists in the working directory. It will use it
4630   only if triggered by ``install_requires`` from a setup.py call
4631   (install, develop, etc).
4632 * Distribute #101: Allowing ``os.devnull`` in Sandbox
4633 * Distribute #92: Fixed the "no eggs" found error with MacPort
4634   (platform.mac_ver() fails)
4635 * Distribute #103: test_get_script_header_jython_workaround not run
4636   anymore under py3 with C or POSIX local. Contributed by Arfrever.
4637 * Distribute #104: removed the assertion when the installation fails,
4638   with a nicer message for the end user.
4639 * Distribute #100: making sure there's no SandboxViolation when
4640   the setup script patches setuptools.
4641
4642 0.6.8
4643 -----
4644
4645 * Added "check_packages" in dist. (added in Setuptools 0.6c11)
4646 * Fixed the DONT_PATCH_SETUPTOOLS state.
4647
4648 0.6.7
4649 -----
4650
4651 * Distribute #58: Added --user support to the develop command
4652 * Distribute #11: Generated scripts now wrap their call to the script entry point
4653   in the standard "if name == 'main'"
4654 * Added the 'DONT_PATCH_SETUPTOOLS' environment variable, so virtualenv
4655   can drive an installation that doesn't patch a global setuptools.
4656 * Reviewed unladen-swallow specific change from
4657   http://code.google.com/p/unladen-swallow/source/detail?spec=svn875&r=719
4658   and determined that it no longer applies. Distribute should work fine with
4659   Unladen Swallow 2009Q3.
4660 * Distribute #21: Allow PackageIndex.open_url to gracefully handle all cases of a
4661   httplib.HTTPException instead of just InvalidURL and BadStatusLine.
4662 * Removed virtual-python.py from this distribution and updated documentation
4663   to point to the actively maintained virtualenv instead.
4664 * Distribute #64: use_setuptools no longer rebuilds the distribute egg every
4665   time it is run
4666 * use_setuptools now properly respects the requested version
4667 * use_setuptools will no longer try to import a distribute egg for the
4668   wrong Python version
4669 * Distribute #74: no_fake should be True by default.
4670 * Distribute #72: avoid a bootstrapping issue with easy_install -U
4671
4672 0.6.6
4673 -----
4674
4675 * Unified the bootstrap file so it works on both py2.x and py3k without 2to3
4676   (patch by Holger Krekel)
4677
4678 0.6.5
4679 -----
4680
4681 * Distribute #65: cli.exe and gui.exe are now generated at build time,
4682   depending on the platform in use.
4683
4684 * Distribute #67: Fixed doc typo (PEP 381/PEP 382).
4685
4686 * Distribute no longer shadows setuptools if we require a 0.7-series
4687   setuptools. And an error is raised when installing a 0.7 setuptools with
4688   distribute.
4689
4690 * When run from within buildout, no attempt is made to modify an existing
4691   setuptools egg, whether in a shared egg directory or a system setuptools.
4692
4693 * Fixed a hole in sandboxing allowing builtin file to write outside of
4694   the sandbox.
4695
4696 0.6.4
4697 -----
4698
4699 * Added the generation of ``distribute_setup_3k.py`` during the release.
4700   This closes Distribute #52.
4701
4702 * Added an upload_docs command to easily upload project documentation to
4703   PyPI's https://pythonhosted.org. This close issue Distribute #56.
4704
4705 * Fixed a bootstrap bug on the use_setuptools() API.
4706
4707 0.6.3
4708 -----
4709
4710 setuptools
4711 ^^^^^^^^^^
4712
4713 * Fixed a bunch of calls to file() that caused crashes on Python 3.
4714
4715 bootstrapping
4716 ^^^^^^^^^^^^^
4717
4718 * Fixed a bug in sorting that caused bootstrap to fail on Python 3.
4719
4720 0.6.2
4721 -----
4722
4723 setuptools
4724 ^^^^^^^^^^
4725
4726 * Added Python 3 support; see docs/python3.txt.
4727   This closes Old Setuptools #39.
4728
4729 * Added option to run 2to3 automatically when installing on Python 3.
4730   This closes issue Distribute #31.
4731
4732 * Fixed invalid usage of requirement.parse, that broke develop -d.
4733   This closes Old Setuptools #44.
4734
4735 * Fixed script launcher for 64-bit Windows.
4736   This closes Old Setuptools #2.
4737
4738 * KeyError when compiling extensions.
4739   This closes Old Setuptools #41.
4740
4741 bootstrapping
4742 ^^^^^^^^^^^^^
4743
4744 * Fixed bootstrap not working on Windows. This closes issue Distribute #49.
4745
4746 * Fixed 2.6 dependencies. This closes issue Distribute #50.
4747
4748 * Make sure setuptools is patched when running through easy_install
4749   This closes Old Setuptools #40.
4750
4751 0.6.1
4752 -----
4753
4754 setuptools
4755 ^^^^^^^^^^
4756
4757 * package_index.urlopen now catches BadStatusLine and malformed url errors.
4758   This closes Distribute #16 and Distribute #18.
4759
4760 * zip_ok is now False by default. This closes Old Setuptools #33.
4761
4762 * Fixed invalid URL error catching. Old Setuptools #20.
4763
4764 * Fixed invalid bootstraping with easy_install installation (Distribute #40).
4765   Thanks to Florian Schulze for the help.
4766
4767 * Removed buildout/bootstrap.py. A new repository will create a specific
4768   bootstrap.py script.
4769
4770
4771 bootstrapping
4772 ^^^^^^^^^^^^^
4773
4774 * The bootstrap process leave setuptools alone if detected in the system
4775   and --root or --prefix is provided, but is not in the same location.
4776   This closes Distribute #10.
4777
4778 0.6
4779 ---
4780
4781 setuptools
4782 ^^^^^^^^^^
4783
4784 * Packages required at build time where not fully present at install time.
4785   This closes Distribute #12.
4786
4787 * Protected against failures in tarfile extraction. This closes Distribute #10.
4788
4789 * Made Jython api_tests.txt doctest compatible. This closes Distribute #7.
4790
4791 * sandbox.py replaced builtin type file with builtin function open. This
4792   closes Distribute #6.
4793
4794 * Immediately close all file handles. This closes Distribute #3.
4795
4796 * Added compatibility with Subversion 1.6. This references Distribute #1.
4797
4798 pkg_resources
4799 ^^^^^^^^^^^^^
4800
4801 * Avoid a call to /usr/bin/sw_vers on OSX and use the official platform API
4802   instead. Based on a patch from ronaldoussoren. This closes issue #5.
4803
4804 * Fixed a SandboxViolation for mkdir that could occur in certain cases.
4805   This closes Distribute #13.
4806
4807 * Allow to find_on_path on systems with tight permissions to fail gracefully.
4808   This closes Distribute #9.
4809
4810 * Corrected inconsistency between documentation and code of add_entry.
4811   This closes Distribute #8.
4812
4813 * Immediately close all file handles. This closes Distribute #3.
4814
4815 easy_install
4816 ^^^^^^^^^^^^
4817
4818 * Immediately close all file handles. This closes Distribute #3.
4819
4820 0.6c9
4821 -----
4822
4823  * Fixed a missing files problem when using Windows source distributions on
4824    non-Windows platforms, due to distutils not handling manifest file line
4825    endings correctly.
4826
4827  * Updated Pyrex support to work with Pyrex 0.9.6 and higher.
4828
4829  * Minor changes for Jython compatibility, including skipping tests that can't
4830    work on Jython.
4831
4832  * Fixed not installing eggs in ``install_requires`` if they were also used for
4833    ``setup_requires`` or ``tests_require``.
4834
4835  * Fixed not fetching eggs in ``install_requires`` when running tests.
4836
4837  * Allow ``ez_setup.use_setuptools()`` to upgrade existing setuptools
4838    installations when called from a standalone ``setup.py``.
4839
4840  * Added a warning if a namespace package is declared, but its parent package
4841    is not also declared as a namespace.
4842
4843  * Support Subversion 1.5
4844
4845  * Removed use of deprecated ``md5`` module if ``hashlib`` is available
4846
4847  * Fixed ``bdist_wininst upload`` trying to upload the ``.exe`` twice
4848
4849  * Fixed ``bdist_egg`` putting a ``native_libs.txt`` in the source package's
4850    ``.egg-info``, when it should only be in the built egg's ``EGG-INFO``.
4851
4852  * Ensure that _full_name is set on all shared libs before extensions are
4853    checked for shared lib usage.  (Fixes a bug in the experimental shared
4854    library build support.)
4855
4856  * Fix to allow unpacked eggs containing native libraries to fail more
4857    gracefully under Google App Engine (with an ``ImportError`` loading the
4858    C-based module, instead of getting a ``NameError``).
4859
4860  * Fixed ``win32.exe`` support for .pth files, so unnecessary directory nesting
4861    is flattened out in the resulting egg.  (There was a case-sensitivity
4862    problem that affected some distributions, notably ``pywin32``.)
4863
4864  * Prevent ``--help-commands`` and other junk from showing under Python 2.5
4865    when running ``easy_install --help``.
4866
4867  * Fixed GUI scripts sometimes not executing on Windows
4868
4869  * Fixed not picking up dependency links from recursive dependencies.
4870
4871  * Only make ``.py``, ``.dll`` and ``.so`` files executable when unpacking eggs
4872
4873  * Changes for Jython compatibility
4874
4875  * Improved error message when a requirement is also a directory name, but the
4876    specified directory is not a source package.
4877
4878  * Fixed ``--allow-hosts`` option blocking ``file:`` URLs
4879
4880  * Fixed HTTP SVN detection failing when the page title included a project
4881    name (e.g. on SourceForge-hosted SVN)
4882
4883  * Fix Jython script installation to handle ``#!`` lines better when
4884    ``sys.executable`` is a script.
4885
4886  * Removed use of deprecated ``md5`` module if ``hashlib`` is available
4887
4888  * Keep site directories (e.g. ``site-packages``) from being included in
4889    ``.pth`` files.
4890
4891 0.6c7
4892 -----
4893
4894  * Fixed ``distutils.filelist.findall()`` crashing on broken symlinks, and
4895    ``egg_info`` command failing on new, uncommitted SVN directories.
4896
4897  * Fix import problems with nested namespace packages installed via
4898    ``--root`` or ``--single-version-externally-managed``, due to the
4899    parent package not having the child package as an attribute.
4900
4901  * ``ftp:`` download URLs now work correctly.
4902
4903  * The default ``--index-url`` is now ``https://pypi.python.org/simple``, to use
4904    the Python Package Index's new simpler (and faster!) REST API.
4905
4906 0.6c6
4907 -----
4908
4909  * Added ``--egg-path`` option to ``develop`` command, allowing you to force
4910    ``.egg-link`` files to use relative paths (allowing them to be shared across
4911    platforms on a networked drive).
4912
4913  * Fix not building binary RPMs correctly.
4914
4915  * Fix "eggsecutables" (such as setuptools' own egg) only being runnable with
4916    bash-compatible shells.
4917
4918  * Fix ``#!`` parsing problems in Windows ``.exe`` script wrappers, when there
4919    was whitespace inside a quoted argument or at the end of the ``#!`` line
4920    (a regression introduced in 0.6c4).
4921
4922  * Fix ``test`` command possibly failing if an older version of the project
4923    being tested was installed on ``sys.path`` ahead of the test source
4924    directory.
4925
4926  * Fix ``find_packages()`` treating ``ez_setup`` and directories with ``.`` in
4927    their names as packages.
4928
4929  * EasyInstall no longer aborts the installation process if a URL it wants to
4930    retrieve can't be downloaded, unless the URL is an actual package download.
4931    Instead, it issues a warning and tries to keep going.
4932
4933  * Fixed distutils-style scripts originally built on Windows having their line
4934    endings doubled when installed on any platform.
4935
4936  * Added ``--local-snapshots-ok`` flag, to allow building eggs from projects
4937    installed using ``setup.py develop``.
4938
4939  * Fixed not HTML-decoding URLs scraped from web pages
4940
4941 0.6c5
4942 -----
4943
4944  * Fix uploaded ``bdist_rpm`` packages being described as ``bdist_egg``
4945    packages under Python versions less than 2.5.
4946
4947  * Fix uploaded ``bdist_wininst`` packages being described as suitable for
4948    "any" version by Python 2.5, even if a ``--target-version`` was specified.
4949
4950  * Fixed ``.dll`` files on Cygwin not having executable permissions when an egg
4951    is installed unzipped.
4952
4953 0.6c4
4954 -----
4955
4956  * Overhauled Windows script wrapping to support ``bdist_wininst`` better.
4957    Scripts installed with ``bdist_wininst`` will always use ``#!python.exe`` or
4958    ``#!pythonw.exe`` as the executable name (even when built on non-Windows
4959    platforms!), and the wrappers will look for the executable in the script's
4960    parent directory (which should find the right version of Python).
4961
4962  * Fix ``upload`` command not uploading files built by ``bdist_rpm`` or
4963    ``bdist_wininst`` under Python 2.3 and 2.4.
4964
4965  * Add support for "eggsecutable" headers: a ``#!/bin/sh`` script that is
4966    prepended to an ``.egg`` file to allow it to be run as a script on Unix-ish
4967    platforms.  (This is mainly so that setuptools itself can have a single-file
4968    installer on Unix, without doing multiple downloads, dealing with firewalls,
4969    etc.)
4970
4971  * Fix problem with empty revision numbers in Subversion 1.4 ``entries`` files
4972
4973  * Use cross-platform relative paths in ``easy-install.pth`` when doing
4974    ``develop`` and the source directory is a subdirectory of the installation
4975    target directory.
4976
4977  * Fix a problem installing eggs with a system packaging tool if the project
4978    contained an implicit namespace package; for example if the ``setup()``
4979    listed a namespace package ``foo.bar`` without explicitly listing ``foo``
4980    as a namespace package.
4981
4982  * Added support for HTTP "Basic" authentication using ``http://user:pass@host``
4983    URLs.  If a password-protected page contains links to the same host (and
4984    protocol), those links will inherit the credentials used to access the
4985    original page.
4986
4987  * Removed all special support for Sourceforge mirrors, as Sourceforge's
4988    mirror system now works well for non-browser downloads.
4989
4990  * Fixed not recognizing ``win32.exe`` installers that included a custom
4991    bitmap.
4992
4993  * Fixed not allowing ``os.open()`` of paths outside the sandbox, even if they
4994    are opened read-only (e.g. reading ``/dev/urandom`` for random numbers, as
4995    is done by ``os.urandom()`` on some platforms).
4996
4997  * Fixed a problem with ``.pth`` testing on Windows when ``sys.executable``
4998    has a space in it (e.g., the user installed Python to a ``Program Files``
4999    directory).
5000
5001 0.6c3
5002 -----
5003
5004  * Fixed breakages caused by Subversion 1.4's new "working copy" format
5005
5006  * You can once again use "python -m easy_install" with Python 2.4 and above.
5007
5008  * Python 2.5 compatibility fixes added.
5009
5010 0.6c2
5011 -----
5012
5013  * The ``ez_setup`` module displays the conflicting version of setuptools (and
5014    its installation location) when a script requests a version that's not
5015    available.
5016
5017  * Running ``setup.py develop`` on a setuptools-using project will now install
5018    setuptools if needed, instead of only downloading the egg.
5019
5020  * Windows script wrappers now support quoted arguments and arguments
5021    containing spaces.  (Patch contributed by Jim Fulton.)
5022
5023  * The ``ez_setup.py`` script now actually works when you put a setuptools
5024    ``.egg`` alongside it for bootstrapping an offline machine.
5025
5026  * A writable installation directory on ``sys.path`` is no longer required to
5027    download and extract a source distribution using ``--editable``.
5028
5029  * Generated scripts now use ``-x`` on the ``#!`` line when ``sys.executable``
5030    contains non-ASCII characters, to prevent deprecation warnings about an
5031    unspecified encoding when the script is run.
5032
5033 0.6c1
5034 -----
5035
5036  * Fixed ``AttributeError`` when trying to download a ``setup_requires``
5037    dependency when a distribution lacks a ``dependency_links`` setting.
5038
5039  * Made ``zip-safe`` and ``not-zip-safe`` flag files contain a single byte, so
5040    as to play better with packaging tools that complain about zero-length
5041    files.
5042
5043  * Made ``setup.py develop`` respect the ``--no-deps`` option, which it
5044    previously was ignoring.
5045
5046  * Support ``extra_path`` option to ``setup()`` when ``install`` is run in
5047    backward-compatibility mode.
5048
5049  * Source distributions now always include a ``setup.cfg`` file that explicitly
5050    sets ``egg_info`` options such that they produce an identical version number
5051    to the source distribution's version number.  (Previously, the default
5052    version number could be different due to the use of ``--tag-date``, or if
5053    the version was overridden on the command line that built the source
5054    distribution.)
5055
5056  * EasyInstall now includes setuptools version information in the
5057    ``User-Agent`` string sent to websites it visits.
5058
5059 0.6b4
5060 -----
5061
5062  * Fix ``register`` not obeying name/version set by ``egg_info`` command, if
5063    ``egg_info`` wasn't explicitly run first on the same command line.
5064
5065  * Added ``--no-date`` and ``--no-svn-revision`` options to ``egg_info``
5066    command, to allow suppressing tags configured in ``setup.cfg``.
5067
5068  * Fixed redundant warnings about missing ``README`` file(s); it should now
5069    appear only if you are actually a source distribution.
5070
5071  * Fix creating Python wrappers for non-Python scripts
5072
5073  * Fix ``ftp://`` directory listing URLs from causing a crash when used in the
5074    "Home page" or "Download URL" slots on PyPI.
5075
5076  * Fix ``sys.path_importer_cache`` not being updated when an existing zipfile
5077    or directory is deleted/overwritten.
5078
5079  * Fix not recognizing HTML 404 pages from package indexes.
5080
5081  * Allow ``file://`` URLs to be used as a package index.  URLs that refer to
5082    directories will use an internally-generated directory listing if there is
5083    no ``index.html`` file in the directory.
5084
5085  * Allow external links in a package index to be specified using
5086    ``rel="homepage"`` or ``rel="download"``, without needing the old
5087    PyPI-specific visible markup.
5088
5089  * Suppressed warning message about possibly-misspelled project name, if an egg
5090    or link for that project name has already been seen.
5091
5092 0.6b3
5093 -----
5094
5095  * Fix ``bdist_egg`` not including files in subdirectories of ``.egg-info``.
5096
5097  * Allow ``.py`` files found by the ``include_package_data`` option to be
5098    automatically included. Remove duplicate data file matches if both
5099    ``include_package_data`` and ``package_data`` are used to refer to the same
5100    files.
5101
5102  * Fix local ``--find-links`` eggs not being copied except with
5103    ``--always-copy``.
5104
5105  * Fix sometimes not detecting local packages installed outside of "site"
5106    directories.
5107
5108  * Fix mysterious errors during initial ``setuptools`` install, caused by
5109    ``ez_setup`` trying to run ``easy_install`` twice, due to a code fallthru
5110    after deleting the egg from which it's running.
5111
5112 0.6b2
5113 -----
5114
5115  * Don't install or update a ``site.py`` patch when installing to a
5116    ``PYTHONPATH`` directory with ``--multi-version``, unless an
5117    ``easy-install.pth`` file is already in use there.
5118
5119  * Construct ``.pth`` file paths in such a way that installing an egg whose
5120    name begins with ``import`` doesn't cause a syntax error.
5121
5122  * Fixed a bogus warning message that wasn't updated since the 0.5 versions.
5123
5124 0.6b1
5125 -----
5126
5127  * Strip ``module`` from the end of compiled extension modules when computing
5128    the name of a ``.py`` loader/wrapper.  (Python's import machinery ignores
5129    this suffix when searching for an extension module.)
5130
5131  * Better ambiguity management: accept ``#egg`` name/version even if processing
5132    what appears to be a correctly-named distutils file, and ignore ``.egg``
5133    files with no ``-``, since valid Python ``.egg`` files always have a version
5134    number (but Scheme eggs often don't).
5135
5136  * Support ``file://`` links to directories in ``--find-links``, so that
5137    easy_install can build packages from local source checkouts.
5138
5139  * Added automatic retry for Sourceforge mirrors.  The new download process is
5140    to first just try dl.sourceforge.net, then randomly select mirror IPs and
5141    remove ones that fail, until something works.  The removed IPs stay removed
5142    for the remainder of the run.
5143
5144  * Ignore bdist_dumb distributions when looking at download URLs.
5145
5146 0.6a11
5147 ------
5148
5149  * Added ``test_loader`` keyword to support custom test loaders
5150
5151  * Added ``setuptools.file_finders`` entry point group to allow implementing
5152    revision control plugins.
5153
5154  * Added ``--identity`` option to ``upload`` command.
5155
5156  * Added ``dependency_links`` to allow specifying URLs for ``--find-links``.
5157
5158  * Enhanced test loader to scan packages as well as modules, and call
5159    ``additional_tests()`` if present to get non-unittest tests.
5160
5161  * Support namespace packages in conjunction with system packagers, by omitting
5162    the installation of any ``__init__.py`` files for namespace packages, and
5163    adding a special ``.pth`` file to create a working package in
5164    ``sys.modules``.
5165
5166  * Made ``--single-version-externally-managed`` automatic when ``--root`` is
5167    used, so that most system packagers won't require special support for
5168    setuptools.
5169
5170  * Fixed ``setup_requires``, ``tests_require``, etc. not using ``setup.cfg`` or
5171    other configuration files for their option defaults when installing, and
5172    also made the install use ``--multi-version`` mode so that the project
5173    directory doesn't need to support .pth files.
5174
5175  * ``MANIFEST.in`` is now forcibly closed when any errors occur while reading
5176    it. Previously, the file could be left open and the actual error would be
5177    masked by problems trying to remove the open file on Windows systems.
5178
5179  * Process ``dependency_links.txt`` if found in a distribution, by adding the
5180    URLs to the list for scanning.
5181
5182  * Use relative paths in ``.pth`` files when eggs are being installed to the
5183    same directory as the ``.pth`` file.  This maximizes portability of the
5184    target directory when building applications that contain eggs.
5185
5186  * Added ``easy_install-N.N`` script(s) for convenience when using multiple
5187    Python versions.
5188
5189  * Added automatic handling of installation conflicts.  Eggs are now shifted to
5190    the front of sys.path, in an order consistent with where they came from,
5191    making EasyInstall seamlessly co-operate with system package managers.
5192
5193    The ``--delete-conflicting`` and ``--ignore-conflicts-at-my-risk`` options
5194    are now no longer necessary, and will generate warnings at the end of a
5195    run if you use them.
5196
5197  * Don't recursively traverse subdirectories given to ``--find-links``.
5198
5199 0.6a10
5200 ------
5201
5202  * Fixed the ``develop`` command ignoring ``--find-links``.
5203
5204  * Added exhaustive testing of the install directory, including a spawn test
5205    for ``.pth`` file support, and directory writability/existence checks.  This
5206    should virtually eliminate the need to set or configure ``--site-dirs``.
5207
5208  * Added ``--prefix`` option for more do-what-I-mean-ishness in the absence of
5209    RTFM-ing.  :)
5210
5211  * Enhanced ``PYTHONPATH`` support so that you don't have to put any eggs on it
5212    manually to make it work.  ``--multi-version`` is no longer a silent
5213    default; you must explicitly use it if installing to a non-PYTHONPATH,
5214    non-"site" directory.
5215
5216  * Expand ``$variables`` used in the ``--site-dirs``, ``--build-directory``,
5217    ``--install-dir``, and ``--script-dir`` options, whether on the command line
5218    or in configuration files.
5219
5220  * Improved SourceForge mirror processing to work faster and be less affected
5221    by transient HTML changes made by SourceForge.
5222
5223  * PyPI searches now use the exact spelling of requirements specified on the
5224    command line or in a project's ``install_requires``.  Previously, a
5225    normalized form of the name was used, which could lead to unnecessary
5226    full-index searches when a project's name had an underscore (``_``) in it.
5227
5228  * EasyInstall can now download bare ``.py`` files and wrap them in an egg,
5229    as long as you include an ``#egg=name-version`` suffix on the URL, or if
5230    the ``.py`` file is listed as the "Download URL" on the project's PyPI page.
5231    This allows third parties to "package" trivial Python modules just by
5232    linking to them (e.g. from within their own PyPI page or download links
5233    page).
5234
5235  * The ``--always-copy`` option now skips "system" and "development" eggs since
5236    they can't be reliably copied.  Note that this may cause EasyInstall to
5237    choose an older version of a package than what you expected, or it may cause
5238    downloading and installation of a fresh version of what's already installed.
5239
5240  * The ``--find-links`` option previously scanned all supplied URLs and
5241    directories as early as possible, but now only directories and direct
5242    archive links are scanned immediately.  URLs are not retrieved unless a
5243    package search was already going to go online due to a package not being
5244    available locally, or due to the use of the ``--update`` or ``-U`` option.
5245
5246  * Fixed the annoying ``--help-commands`` wart.
5247
5248 0.6a9
5249 -----
5250
5251  * The ``sdist`` command no longer uses the traditional ``MANIFEST`` file to
5252    create source distributions.  ``MANIFEST.in`` is still read and processed,
5253    as are the standard defaults and pruning. But the manifest is built inside
5254    the project's ``.egg-info`` directory as ``SOURCES.txt``, and it is rebuilt
5255    every time the ``egg_info`` command is run.
5256
5257  * Added the ``include_package_data`` keyword to ``setup()``, allowing you to
5258    automatically include any package data listed in revision control or
5259    ``MANIFEST.in``
5260
5261  * Added the ``exclude_package_data`` keyword to ``setup()``, allowing you to
5262    trim back files included via the ``package_data`` and
5263    ``include_package_data`` options.
5264
5265  * Fixed ``--tag-svn-revision`` not working when run from a source
5266    distribution.
5267
5268  * Added warning for namespace packages with missing ``declare_namespace()``
5269
5270  * Added ``tests_require`` keyword to ``setup()``, so that e.g. packages
5271    requiring ``nose`` to run unit tests can make this dependency optional
5272    unless the ``test`` command is run.
5273
5274  * Made all commands that use ``easy_install`` respect its configuration
5275    options, as this was causing some problems with ``setup.py install``.
5276
5277  * Added an ``unpack_directory()`` driver to ``setuptools.archive_util``, so
5278    that you can process a directory tree through a processing filter as if it
5279    were a zipfile or tarfile.
5280
5281  * Added an internal ``install_egg_info`` command to use as part of old-style
5282    ``install`` operations, that installs an ``.egg-info`` directory with the
5283    package.
5284
5285  * Added a ``--single-version-externally-managed`` option to the ``install``
5286    command so that you can more easily wrap a "flat" egg in a system package.
5287
5288  * Enhanced ``bdist_rpm`` so that it installs single-version eggs that
5289    don't rely on a ``.pth`` file. The ``--no-egg`` option has been removed,
5290    since all RPMs are now built in a more backwards-compatible format.
5291
5292  * Support full roundtrip translation of eggs to and from ``bdist_wininst``
5293    format. Running ``bdist_wininst`` on a setuptools-based package wraps the
5294    egg in an .exe that will safely install it as an egg (i.e., with metadata
5295    and entry-point wrapper scripts), and ``easy_install`` can turn the .exe
5296    back into an ``.egg`` file or directory and install it as such.
5297
5298  * Fixed ``.pth`` file processing picking up nested eggs (i.e. ones inside
5299    "baskets") when they weren't explicitly listed in the ``.pth`` file.
5300
5301  * If more than one URL appears to describe the exact same distribution, prefer
5302    the shortest one.  This helps to avoid "table of contents" CGI URLs like the
5303    ones on effbot.org.
5304
5305  * Quote arguments to python.exe (including python's path) to avoid problems
5306    when Python (or a script) is installed in a directory whose name contains
5307    spaces on Windows.
5308
5309  * Support full roundtrip translation of eggs to and from ``bdist_wininst``
5310    format.  Running ``bdist_wininst`` on a setuptools-based package wraps the
5311    egg in an .exe that will safely install it as an egg (i.e., with metadata
5312    and entry-point wrapper scripts), and ``easy_install`` can turn the .exe
5313    back into an ``.egg`` file or directory and install it as such.
5314
5315 0.6a8
5316 -----
5317
5318  * Fixed some problems building extensions when Pyrex was installed, especially
5319    with Python 2.4 and/or packages using SWIG.
5320
5321  * Made ``develop`` command accept all the same options as ``easy_install``,
5322    and use the ``easy_install`` command's configuration settings as defaults.
5323
5324  * Made ``egg_info --tag-svn-revision`` fall back to extracting the revision
5325    number from ``PKG-INFO`` in case it is being run on a source distribution of
5326    a snapshot taken from a Subversion-based project.
5327
5328  * Automatically detect ``.dll``, ``.so`` and ``.dylib`` files that are being
5329    installed as data, adding them to ``native_libs.txt`` automatically.
5330
5331  * Fixed some problems with fresh checkouts of projects that don't include
5332    ``.egg-info/PKG-INFO`` under revision control and put the project's source
5333    code directly in the project directory. If such a package had any
5334    requirements that get processed before the ``egg_info`` command can be run,
5335    the setup scripts would fail with a "Missing 'Version:' header and/or
5336    PKG-INFO file" error, because the egg runtime interpreted the unbuilt
5337    metadata in a directory on ``sys.path`` (i.e. the current directory) as
5338    being a corrupted egg. Setuptools now monkeypatches the distribution
5339    metadata cache to pretend that the egg has valid version information, until
5340    it has a chance to make it actually be so (via the ``egg_info`` command).
5341
5342  * Update for changed SourceForge mirror format
5343
5344  * Fixed not installing dependencies for some packages fetched via Subversion
5345
5346  * Fixed dependency installation with ``--always-copy`` not using the same
5347    dependency resolution procedure as other operations.
5348
5349  * Fixed not fully removing temporary directories on Windows, if a Subversion
5350    checkout left read-only files behind
5351
5352  * Fixed some problems building extensions when Pyrex was installed, especially
5353    with Python 2.4 and/or packages using SWIG.
5354
5355 0.6a7
5356 -----
5357
5358  * Fixed not being able to install Windows script wrappers using Python 2.3
5359
5360 0.6a6
5361 -----
5362
5363  * Added support for "traditional" PYTHONPATH-based non-root installation, and
5364    also the convenient ``virtual-python.py`` script, based on a contribution
5365    by Ian Bicking.  The setuptools egg now contains a hacked ``site`` module
5366    that makes the PYTHONPATH-based approach work with .pth files, so that you
5367    can get the full EasyInstall feature set on such installations.
5368
5369  * Added ``--no-deps`` and ``--allow-hosts`` options.
5370
5371  * Improved Windows ``.exe`` script wrappers so that the script can have the
5372    same name as a module without confusing Python.
5373
5374  * Changed dependency processing so that it's breadth-first, allowing a
5375    depender's preferences to override those of a dependee, to prevent conflicts
5376    when a lower version is acceptable to the dependee, but not the depender.
5377    Also, ensure that currently installed/selected packages aren't given
5378    precedence over ones desired by a package being installed, which could
5379    cause conflict errors.
5380
5381 0.6a5
5382 -----
5383
5384  * Fixed missing gui/cli .exe files in distribution. Fixed bugs in tests.
5385
5386 0.6a3
5387 -----
5388
5389  * Added ``gui_scripts`` entry point group to allow installing GUI scripts
5390    on Windows and other platforms.  (The special handling is only for Windows;
5391    other platforms are treated the same as for ``console_scripts``.)
5392
5393  * Improved error message when trying to use old ways of running
5394    ``easy_install``.  Removed the ability to run via ``python -m`` or by
5395    running ``easy_install.py``; ``easy_install`` is the command to run on all
5396    supported platforms.
5397
5398  * Improved wrapper script generation and runtime initialization so that a
5399    VersionConflict doesn't occur if you later install a competing version of a
5400    needed package as the default version of that package.
5401
5402  * Fixed a problem parsing version numbers in ``#egg=`` links.
5403
5404 0.6a2
5405 -----
5406
5407  * Added ``console_scripts`` entry point group to allow installing scripts
5408    without the need to create separate script files. On Windows, console
5409    scripts get an ``.exe`` wrapper so you can just type their name. On other
5410    platforms, the scripts are written without a file extension.
5411
5412  * EasyInstall can now install "console_scripts" defined by packages that use
5413    ``setuptools`` and define appropriate entry points.  On Windows, console
5414    scripts get an ``.exe`` wrapper so you can just type their name.  On other
5415    platforms, the scripts are installed without a file extension.
5416
5417  * Using ``python -m easy_install`` or running ``easy_install.py`` is now
5418    DEPRECATED, since an ``easy_install`` wrapper is now available on all
5419    platforms.
5420
5421 0.6a1
5422 -----
5423
5424  * Added support for building "old-style" RPMs that don't install an egg for
5425    the target package, using a ``--no-egg`` option.
5426
5427  * The ``build_ext`` command now works better when using the ``--inplace``
5428    option and multiple Python versions. It now makes sure that all extensions
5429    match the current Python version, even if newer copies were built for a
5430    different Python version.
5431
5432  * The ``upload`` command no longer attaches an extra ``.zip`` when uploading
5433    eggs, as PyPI now supports egg uploads without trickery.
5434
5435  * The ``ez_setup`` script/module now displays a warning before downloading
5436    the setuptools egg, and attempts to check the downloaded egg against an
5437    internal MD5 checksum table.
5438
5439  * Fixed the ``--tag-svn-revision`` option of ``egg_info`` not finding the
5440    latest revision number; it was using the revision number of the directory
5441    containing ``setup.py``, not the highest revision number in the project.
5442
5443  * Added ``eager_resources`` setup argument
5444
5445  * The ``sdist`` command now recognizes Subversion "deleted file" entries and
5446    does not include them in source distributions.
5447
5448  * ``setuptools`` now embeds itself more thoroughly into the distutils, so that
5449    other distutils extensions (e.g. py2exe, py2app) will subclass setuptools'
5450    versions of things, rather than the native distutils ones.
5451
5452  * Added ``entry_points`` and ``setup_requires`` arguments to ``setup()``;
5453    ``setup_requires`` allows you to automatically find and download packages
5454    that are needed in order to *build* your project (as opposed to running it).
5455
5456  * ``setuptools`` now finds its commands, ``setup()`` argument validators, and
5457    metadata writers using entry points, so that they can be extended by
5458    third-party packages. See `Creating distutils Extensions
5459    <https://setuptools.pypa.io/en/latest/setuptools.html#creating-distutils-extensions>`_
5460    for more details.
5461
5462  * The vestigial ``depends`` command has been removed. It was never finished
5463    or documented, and never would have worked without EasyInstall - which it
5464    pre-dated and was never compatible with.
5465
5466  * EasyInstall now does MD5 validation of downloads from PyPI, or from any link
5467    that has an "#md5=..." trailer with a 32-digit lowercase hex md5 digest.
5468
5469  * EasyInstall now handles symlinks in target directories by removing the link,
5470    rather than attempting to overwrite the link's destination.  This makes it
5471    easier to set up an alternate Python "home" directory (as described in
5472    the Non-Root Installation section of the docs).
5473
5474  * Added support for handling MacOS platform information in ``.egg`` filenames,
5475    based on a contribution by Kevin Dangoor.  You may wish to delete and
5476    reinstall any eggs whose filename includes "darwin" and "Power_Macintosh",
5477    because the format for this platform information has changed so that minor
5478    OS X upgrades (such as 10.4.1 to 10.4.2) do not cause eggs built with a
5479    previous OS version to become obsolete.
5480
5481  * easy_install's dependency processing algorithms have changed.  When using
5482    ``--always-copy``, it now ensures that dependencies are copied too.  When
5483    not using ``--always-copy``, it tries to use a single resolution loop,
5484    rather than recursing.
5485
5486  * Fixed installing extra ``.pyc`` or ``.pyo`` files for scripts with ``.py``
5487    extensions.
5488
5489  * Added ``--site-dirs`` option to allow adding custom "site" directories.
5490    Made ``easy-install.pth`` work in platform-specific alternate site
5491    directories (e.g. ``~/Library/Python/2.x/site-packages`` on Mac OS X).
5492
5493  * If you manually delete the current version of a package, the next run of
5494    EasyInstall against the target directory will now remove the stray entry
5495    from the ``easy-install.pth`` file.
5496
5497  * EasyInstall now recognizes URLs with a ``#egg=project_name`` fragment ID
5498    as pointing to the named project's source checkout.  Such URLs have a lower
5499    match precedence than any other kind of distribution, so they'll only be
5500    used if they have a higher version number than any other available
5501    distribution, or if you use the ``--editable`` option.  The ``#egg``
5502    fragment can contain a version if it's formatted as ``#egg=proj-ver``,
5503    where ``proj`` is the project name, and ``ver`` is the version number.  You
5504    *must* use the format for these values that the ``bdist_egg`` command uses;
5505    i.e., all non-alphanumeric runs must be condensed to single underscore
5506    characters.
5507
5508  * Added the ``--editable`` option; see Editing and Viewing Source Packages
5509    in the docs.  Also, slightly changed the behavior of the
5510    ``--build-directory`` option.
5511
5512  * Fixed the setup script sandbox facility not recognizing certain paths as
5513    valid on case-insensitive platforms.
5514
5515 0.5a12
5516 ------
5517
5518  * The zip-safety scanner now checks for modules that might be used with
5519    ``python -m``, and marks them as unsafe for zipping, since Python 2.4 can't
5520    handle ``-m`` on zipped modules.
5521
5522  * Fix ``python -m easy_install`` not working due to setuptools being installed
5523    as a zipfile.  Update safety scanner to check for modules that might be used
5524    as ``python -m`` scripts.
5525
5526  * Misc. fixes for win32.exe support, including changes to support Python 2.4's
5527    changed ``bdist_wininst`` format.
5528
5529 0.5a11
5530 ------
5531
5532  * Fix breakage of the "develop" command that was caused by the addition of
5533    ``--always-unzip`` to the ``easy_install`` command.
5534
5535 0.5a10
5536 ------
5537
5538  * Put the ``easy_install`` module back in as a module, as it's needed for
5539    ``python -m`` to run it!
5540
5541  * Allow ``--find-links/-f`` to accept local directories or filenames as well
5542    as URLs.
5543
5544 0.5a9
5545 -----
5546
5547  * Include ``svn:externals`` directories in source distributions as well as
5548    normal subversion-controlled files and directories.
5549
5550  * Added ``exclude=patternlist`` option to ``setuptools.find_packages()``
5551
5552  * Changed --tag-svn-revision to include an "r" in front of the revision number
5553    for better readability.
5554
5555  * Added ability to build eggs without including source files (except for any
5556    scripts, of course), using the ``--exclude-source-files`` option to
5557    ``bdist_egg``.
5558
5559  * ``setup.py install`` now automatically detects when an "unmanaged" package
5560    or module is going to be on ``sys.path`` ahead of a package being installed,
5561    thereby preventing the newer version from being imported. If this occurs,
5562    a warning message is output to ``sys.stderr``, but installation proceeds
5563    anyway. The warning message informs the user what files or directories
5564    need deleting, and advises them they can also use EasyInstall (with the
5565    ``--delete-conflicting`` option) to do it automatically.
5566
5567  * The ``egg_info`` command now adds a ``top_level.txt`` file to the metadata
5568    directory that lists all top-level modules and packages in the distribution.
5569    This is used by the ``easy_install`` command to find possibly-conflicting
5570    "unmanaged" packages when installing the distribution.
5571
5572  * Added ``zip_safe`` and ``namespace_packages`` arguments to ``setup()``.
5573    Added package analysis to determine zip-safety if the ``zip_safe`` flag
5574    is not given, and advise the author regarding what code might need changing.
5575
5576  * Fixed the swapped ``-d`` and ``-b`` options of ``bdist_egg``.
5577
5578  * EasyInstall now automatically detects when an "unmanaged" package or
5579    module is going to be on ``sys.path`` ahead of a package you're installing,
5580    thereby preventing the newer version from being imported.  By default, it
5581    will abort installation to alert you of the problem, but there are also
5582    new options (``--delete-conflicting`` and ``--ignore-conflicts-at-my-risk``)
5583    available to change the default behavior.  (Note: this new feature doesn't
5584    take effect for egg files that were built with older ``setuptools``
5585    versions, because they lack the new metadata file required to implement it.)
5586
5587  * The ``easy_install`` distutils command now uses ``DistutilsError`` as its
5588    base error type for errors that should just issue a message to stderr and
5589    exit the program without a traceback.
5590
5591  * EasyInstall can now be given a path to a directory containing a setup
5592    script, and it will attempt to build and install the package there.
5593
5594  * EasyInstall now performs a safety analysis on module contents to determine
5595    whether a package is likely to run in zipped form, and displays
5596    information about what modules may be doing introspection that would break
5597    when running as a zipfile.
5598
5599  * Added the ``--always-unzip/-Z`` option, to force unzipping of packages that
5600    would ordinarily be considered safe to unzip, and changed the meaning of
5601    ``--zip-ok/-z`` to "always leave everything zipped".
5602
5603 0.5a8
5604 -----
5605
5606  * The "egg_info" command now always sets the distribution metadata to "safe"
5607    forms of the distribution name and version, so that distribution files will
5608    be generated with parseable names (i.e., ones that don't include '-' in the
5609    name or version). Also, this means that if you use the various ``--tag``
5610    options of "egg_info", any distributions generated will use the tags in the
5611    version, not just egg distributions.
5612
5613  * Added support for defining command aliases in distutils configuration files,
5614    under the "[aliases]" section. To prevent recursion and to allow aliases to
5615    call the command of the same name, a given alias can be expanded only once
5616    per command-line invocation. You can define new aliases with the "alias"
5617    command, either for the local, global, or per-user configuration.
5618
5619  * Added "rotate" command to delete old distribution files, given a set of
5620    patterns to match and the number of files to keep.  (Keeps the most
5621    recently-modified distribution files matching each pattern.)
5622
5623  * Added "saveopts" command that saves all command-line options for the current
5624    invocation to the local, global, or per-user configuration file. Useful for
5625    setting defaults without having to hand-edit a configuration file.
5626
5627  * Added a "setopt" command that sets a single option in a specified distutils
5628    configuration file.
5629
5630  * There is now a separate documentation page for setuptools; revision
5631    history that's not specific to EasyInstall has been moved to that page.
5632
5633 0.5a7
5634 -----
5635
5636  * Added "upload" support for egg and source distributions, including a bug
5637    fix for "upload" and a temporary workaround for lack of .egg support in
5638    PyPI.
5639
5640 0.5a6
5641 -----
5642
5643  * Beefed up the "sdist" command so that if you don't have a MANIFEST.in, it
5644    will include all files under revision control (CVS or Subversion) in the
5645    current directory, and it will regenerate the list every time you create a
5646    source distribution, not just when you tell it to. This should make the
5647    default "do what you mean" more often than the distutils' default behavior
5648    did, while still retaining the old behavior in the presence of MANIFEST.in.
5649
5650  * Fixed the "develop" command always updating .pth files, even if you
5651    specified ``-n`` or ``--dry-run``.
5652
5653  * Slightly changed the format of the generated version when you use
5654    ``--tag-build`` on the "egg_info" command, so that you can make tagged
5655    revisions compare *lower* than the version specified in setup.py (e.g. by
5656    using ``--tag-build=dev``).
5657
5658 0.5a5
5659 -----
5660
5661  * Added ``develop`` command to ``setuptools``-based packages. This command
5662    installs an ``.egg-link`` pointing to the package's source directory, and
5663    script wrappers that ``execfile()`` the source versions of the package's
5664    scripts. This lets you put your development checkout(s) on sys.path without
5665    having to actually install them.  (To uninstall the link, use
5666    use ``setup.py develop --uninstall``.)
5667
5668  * Added ``egg_info`` command to ``setuptools``-based packages. This command
5669    just creates or updates the "projectname.egg-info" directory, without
5670    building an egg.  (It's used by the ``bdist_egg``, ``test``, and ``develop``
5671    commands.)
5672
5673  * Enhanced the ``test`` command so that it doesn't install the package, but
5674    instead builds any C extensions in-place, updates the ``.egg-info``
5675    metadata, adds the source directory to ``sys.path``, and runs the tests
5676    directly on the source. This avoids an "unmanaged" installation of the
5677    package to ``site-packages`` or elsewhere.
5678
5679  * Made ``easy_install`` a standard ``setuptools`` command, moving it from
5680    the ``easy_install`` module to ``setuptools.command.easy_install``. Note
5681    that if you were importing or extending it, you must now change your imports
5682    accordingly.  ``easy_install.py`` is still installed as a script, but not as
5683    a module.
5684
5685 0.5a4
5686 -----
5687
5688  * Setup scripts using setuptools can now list their dependencies directly in
5689    the setup.py file, without having to manually create a ``depends.txt`` file.
5690    The ``install_requires`` and ``extras_require`` arguments to ``setup()``
5691    are used to create a dependencies file automatically. If you are manually
5692    creating ``depends.txt`` right now, please switch to using these setup
5693    arguments as soon as practical, because ``depends.txt`` support will be
5694    removed in the 0.6 release cycle. For documentation on the new arguments,
5695    see the ``setuptools.dist.Distribution`` class.
5696
5697  * Setup scripts using setuptools now always install using ``easy_install``
5698    internally, for ease of uninstallation and upgrading.
5699
5700  * Added ``--always-copy/-a`` option to always copy needed packages to the
5701    installation directory, even if they're already present elsewhere on
5702    sys.path. (In previous versions, this was the default behavior, but now
5703    you must request it.)
5704
5705  * Added ``--upgrade/-U`` option to force checking PyPI for latest available
5706    version(s) of all packages requested by name and version, even if a matching
5707    version is available locally.
5708
5709  * Added automatic installation of dependencies declared by a distribution
5710    being installed.  These dependencies must be listed in the distribution's
5711    ``EGG-INFO`` directory, so the distribution has to have declared its
5712    dependencies by using setuptools.  If a package has requirements it didn't
5713    declare, you'll still have to deal with them yourself.  (E.g., by asking
5714    EasyInstall to find and install them.)
5715
5716  * Added the ``--record`` option to ``easy_install`` for the benefit of tools
5717    that run ``setup.py install --record=filename`` on behalf of another
5718    packaging system.)
5719
5720 0.5a3
5721 -----
5722
5723  * Fixed not setting script permissions to allow execution.
5724
5725  * Improved sandboxing so that setup scripts that want a temporary directory
5726    (e.g. pychecker) can still run in the sandbox.
5727
5728 0.5a2
5729 -----
5730
5731  * Fix stupid stupid refactoring-at-the-last-minute typos.  :(
5732
5733 0.5a1
5734 -----
5735
5736  * Added support for "self-installation" bootstrapping. Packages can now
5737    include ``ez_setup.py`` in their source distribution, and add the following
5738    to their ``setup.py``, in order to automatically bootstrap installation of
5739    setuptools as part of their setup process::
5740
5741     from ez_setup import use_setuptools
5742     use_setuptools()
5743
5744     from setuptools import setup
5745     # etc...
5746
5747  * Added support for converting ``.win32.exe`` installers to eggs on the fly.
5748    EasyInstall will now recognize such files by name and install them.
5749
5750  * Fixed a problem with picking the "best" version to install (versions were
5751    being sorted as strings, rather than as parsed values)
5752
5753 0.4a4
5754 -----
5755
5756  * Added support for the distutils "verbose/quiet" and "dry-run" options, as
5757    well as the "optimize" flag.
5758
5759  * Support downloading packages that were uploaded to PyPI (by scanning all
5760    links on package pages, not just the homepage/download links).
5761
5762 0.4a3
5763 -----
5764
5765  * Add progress messages to the search/download process so that you can tell
5766    what URLs it's reading to find download links.  (Hopefully, this will help
5767    people report out-of-date and broken links to package authors, and to tell
5768    when they've asked for a package that doesn't exist.)
5769
5770 0.4a2
5771 -----
5772
5773  * Added ``ez_setup.py`` installer/bootstrap script to make initial setuptools
5774    installation easier, and to allow distributions using setuptools to avoid
5775    having to include setuptools in their source distribution.
5776
5777  * All downloads are now managed by the ``PackageIndex`` class (which is now
5778    subclassable and replaceable), so that embedders can more easily override
5779    download logic, give download progress reports, etc. The class has also
5780    been moved to the new ``setuptools.package_index`` module.
5781
5782  * The ``Installer`` class no longer handles downloading, manages a temporary
5783    directory, or tracks the ``zip_ok`` option. Downloading is now handled
5784    by ``PackageIndex``, and ``Installer`` has become an ``easy_install``
5785    command class based on ``setuptools.Command``.
5786
5787  * There is a new ``setuptools.sandbox.run_setup()`` API to invoke a setup
5788    script in a directory sandbox, and a new ``setuptools.archive_util`` module
5789    with an ``unpack_archive()`` API. These were split out of EasyInstall to
5790    allow reuse by other tools and applications.
5791
5792  * ``setuptools.Command`` now supports reinitializing commands using keyword
5793    arguments to set/reset options. Also, ``Command`` subclasses can now set
5794    their ``command_consumes_arguments`` attribute to ``True`` in order to
5795    receive an ``args`` option containing the rest of the command line.
5796
5797  * Added support for installing scripts
5798
5799  * Added support for setting options via distutils configuration files, and
5800    using distutils' default options as a basis for EasyInstall's defaults.
5801
5802  * Renamed ``--scan-url/-s`` to ``--find-links/-f`` to free up ``-s`` for the
5803    script installation directory option.
5804
5805  * Use ``urllib2`` instead of ``urllib``, to allow use of ``https:`` URLs if
5806    Python includes SSL support.
5807
5808 0.4a1
5809 -----
5810
5811  * Added ``--scan-url`` and ``--index-url`` options, to scan download pages
5812    and search PyPI for needed packages.
5813
5814 0.3a4
5815 -----
5816
5817  * Restrict ``--build-directory=DIR/-b DIR`` option to only be used with single
5818    URL installs, to avoid running the wrong setup.py.
5819
5820 0.3a3
5821 -----
5822
5823  * Added ``--build-directory=DIR/-b DIR`` option.
5824
5825  * Added "installation report" that explains how to use 'require()' when doing
5826    a multiversion install or alternate installation directory.
5827
5828  * Added SourceForge mirror auto-select (Contributed by Ian Bicking)
5829
5830  * Added "sandboxing" that stops a setup script from running if it attempts to
5831    write to the filesystem outside of the build area
5832
5833  * Added more workarounds for packages with quirky ``install_data`` hacks
5834
5835 0.3a2
5836 -----
5837
5838  * Added new options to ``bdist_egg`` to allow tagging the egg's version number
5839    with a subversion revision number, the current date, or an explicit tag
5840    value. Run ``setup.py bdist_egg --help`` to get more information.
5841
5842  * Added subversion download support for ``svn:`` and ``svn+`` URLs, as well as
5843    automatic recognition of HTTP subversion URLs (Contributed by Ian Bicking)
5844
5845  * Misc. bug fixes
5846
5847 0.3a1
5848 -----
5849
5850  * Initial release.
5851