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