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