Skip to content

Commit 3e755ec

Browse files
committed
Merge branch 'master' into feature/distribution-options-hooks
2 parents 88951e9 + a007982 commit 3e755ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1242
-1353
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 41.4.0
2+
current_version = 41.6.0
33
commit = True
44
tag = True
55

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ jobs:
1616
- python: 3.5
1717
- &default_py
1818
python: 3.6
19+
- python: 3.7
1920
- &latest_py3
20-
python: 3.7
21+
python: 3.8
2122
- <<: *latest_py3
2223
env: LANG=C
2324
- python: 3.8-dev

CHANGES.rst

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
v41.6.0
2+
-------
3+
4+
* #479: Replace usage of deprecated ``imp`` module with local re-implementation in ``setuptools._imp``.
5+
6+
7+
v41.5.1
8+
-------
9+
10+
* #1891: Fix code for detecting Visual Studio's version on Windows under Python 2.
11+
12+
13+
v41.5.0
14+
-------
15+
16+
* #1811: Improve Visual C++ 14.X support, mainly for Visual Studio 2017 and 2019.
17+
* #1814: Fix ``pkg_resources.Requirement`` hash/equality implementation: take PEP 508 direct URL into account.
18+
* #1824: Fix tests when running under ``python3.10``.
19+
* #1878: Formally deprecated the ``test`` command, with the recommendation that users migrate to ``tox``.
20+
* #1860: Update documentation to mention the egg format is not supported by pip and dependency links support was dropped starting with pip 19.0.
21+
* #1862: Drop ez_setup documentation: deprecated for some time (last updated in 2016), and still relying on easy_install (deprecated too).
22+
* #1868: Drop most documentation references to (deprecated) EasyInstall.
23+
* #1884: Added a trove classifier to document support for Python 3.8.
24+
* #1886: Added Python 3.8 release to the Travis test matrix.
25+
26+
127
v41.4.0
228
-------
329

changelog.d/1861.change.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix empty namespace package installation from wheel.

changelog.d/1898.breaking.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Removed the "upload" and "register" commands in favor of `twine <https://pypi.org/p/twine>`_.

conftest.py

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def pytest_addoption(parser):
1919

2020
if sys.version_info < (3,):
2121
collect_ignore.append('setuptools/lib2to3_ex.py')
22+
collect_ignore.append('setuptools/_imp.py')
2223

2324

2425
if sys.version_info < (3, 6):

docs/development.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Authority (PyPA) and led by Jason R. Coombs.
77

88
This document describes the process by which Setuptools is developed.
99
This document assumes the reader has some passing familiarity with
10-
*using* setuptools, the ``pkg_resources`` module, and EasyInstall. It
10+
*using* setuptools, the ``pkg_resources`` module, and pip. It
1111
does not attempt to explain basic concepts like inter-project
1212
dependencies, nor does it contain detailed lexical syntax for most
1313
file formats. Neither does it explain concepts like "namespace

docs/easy_install.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -317,8 +317,8 @@ Note that instead of changing your ``PATH`` to include the Python scripts
317317
directory, you can also retarget the installation location for scripts so they
318318
go on a directory that's already on the ``PATH``. For more information see
319319
`Command-Line Options`_ and `Configuration Files`_. During installation,
320-
pass command line options (such as ``--script-dir``) to
321-
``ez_setup.py`` to control where ``easy_install.exe`` will be installed.
320+
pass command line options (such as ``--script-dir``) to control where
321+
scripts will be installed.
322322

323323

324324
Windows Executable Launcher

docs/ez_setup.txt

-195
This file was deleted.

docs/formats.txt

+2-5
Original file line numberDiff line numberDiff line change
@@ -299,11 +299,8 @@ specified by the ``setup_requires`` parameter to the Distribution.
299299
A list of dependency URLs, one per line, as specified using the
300300
``dependency_links`` keyword to ``setup()``. These may be direct
301301
download URLs, or the URLs of web pages containing direct download
302-
links, and will be used by EasyInstall to find dependencies, as though
303-
the user had manually provided them via the ``--find-links`` command
304-
line option. Please see the setuptools manual and EasyInstall manual
305-
for more information on specifying this option, and for information on
306-
how EasyInstall processes ``--find-links`` URLs.
302+
links. Please see the setuptools manual for more information on
303+
specifying this option.
307304

308305

309306
``depends.txt`` -- Obsolete, do not create!

docs/pkg_resources.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ abbreviation for ``pkg_resources.working_set.require()``:
245245
interactive interpreter hacking than for production use. If you're creating
246246
an actual library or application, it's strongly recommended that you create
247247
a "setup.py" script using ``setuptools``, and declare all your requirements
248-
there. That way, tools like EasyInstall can automatically detect what
249-
requirements your package has, and deal with them accordingly.
248+
there. That way, tools like pip can automatically detect what requirements
249+
your package has, and deal with them accordingly.
250250

251251
Note that calling ``require('SomePackage')`` will not install
252252
``SomePackage`` if it isn't already present. If you need to do this, you
@@ -611,9 +611,9 @@ Requirements Parsing
611611
or activation of both Report-O-Rama and any libraries it needs in order to
612612
provide PDF support. For example, you could use::
613613

614-
easy_install.py Report-O-Rama[PDF]
614+
pip install Report-O-Rama[PDF]
615615

616-
To install the necessary packages using the EasyInstall program, or call
616+
To install the necessary packages using pip, or call
617617
``pkg_resources.require('Report-O-Rama[PDF]')`` to add the necessary
618618
distributions to sys.path at runtime.
619619

@@ -1843,9 +1843,9 @@ History
18431843
because it isn't necessarily a filesystem path (and hasn't been for some
18441844
time now). The ``location`` of ``Distribution`` objects in the filesystem
18451845
should always be normalized using ``pkg_resources.normalize_path()``; all
1846-
of the setuptools and EasyInstall code that generates distributions from
1847-
the filesystem (including ``Distribution.from_filename()``) ensure this
1848-
invariant, but if you use a more generic API like ``Distribution()`` or
1846+
of the setuptools' code that generates distributions from the filesystem
1847+
(including ``Distribution.from_filename()``) ensure this invariant, but if
1848+
you use a more generic API like ``Distribution()`` or
18491849
``Distribution.from_location()`` you should take care that you don't
18501850
create a distribution with an un-normalized filesystem path.
18511851

0 commit comments

Comments
 (0)