Skip to content

Commit dd239fd

Browse files
committed
dist: Remove support for building and distributing *.egg files
Wheel is currently considered the standard for built and binary packaging for Python See https://packaging.python.org/discussions/wheel-vs-egg/ See man-group#125
1 parent 3c54816 commit dd239fd

File tree

13 files changed

+2
-29
lines changed

13 files changed

+2
-29
lines changed

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY_FILES = VERSION CHANGES.md common_setup.py MANIFEST.in LICENSE
1616
UPLOAD_OPTS =
1717

1818
# removed from PHONY: circleci_sip circleci_pyqt
19-
.PHONY: extras copyfiles wheels eggs sdists install develop test upload clean
19+
.PHONY: extras copyfiles wheels sdists install develop test upload clean
2020

2121
extras:
2222
pip install $(EXTRA_DEPS)
@@ -28,9 +28,6 @@ wheels: copyfiles
2828
pip install -U wheel
2929
./foreach.sh --changed 'python setup.py bdist_wheel'
3030

31-
eggs: copyfiles
32-
./foreach.sh --changed 'python setup.py bdist_egg'
33-
3431
sdists: copyfiles
3532
./foreach.sh --changed 'python setup.py sdist'
3633

pytest-devpi-server/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ Install using your favourite package manager:
1313

1414
```bash
1515
pip install pytest-devpi-server
16-
# or..
17-
easy_install pytest-devpi-server
1816
```
1917

2018
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-fixture-config/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Install using your favourite package manager:
99

1010
```bash
1111
pip install pytest-fixture-config
12-
# or..
13-
easy_install pytest-fixture-config
1412
```
1513

1614
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-git/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Creates an empty Git repository for testing that cleans up after itself on teard
77
Install using your favourite package installer:
88
```bash
99
pip install pytest-git
10-
# or
11-
easy_install pytest-git
1210
```
1311

1412
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-listener/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ Install using your favourite package manager:
88

99
```bash
1010
pip install pytest-listener
11-
# or..
12-
easy_install pytest-listener
1311
```
1412

1513
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-profiling/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ generated using [gprof2dot](http://code.google.com/p/jrfonseca/wiki/Gprof2Dot) a
1313
Install using your favourite package installer:
1414
```bash
1515
pip install pytest-profiling
16-
# or
17-
easy_install pytest-profiling
1816
```
1917

2018
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-pyramid-server/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ Install using your favourite package manager:
1010

1111
```bash
1212
pip install pytest-pyramid-server
13-
# or..
14-
easy_install pytest-pyramid-server
1513
```
1614

1715
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-qt-app/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Set up a Q Application for QT with an X-Window Virtual Framebuffer (Xvfb).
77
Install using your favourite package installer:
88
```bash
99
pip install pytest-qt-app
10-
# or
11-
easy_install pytest-qt-app
1210
```
1311

1412
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-shutil/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ Install using your favourite package manager::
1010

1111
```bash
1212
pip install pytest-shutil
13-
# or..
14-
easy_install pytest-shutil
15-
```
13+
```
1614

1715
## Workspace Fixture
1816

pytest-svn/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ Creates an empty SVN repository for testing that cleans up after itself on teard
77
Install using your favourite package installer:
88
```bash
99
pip install pytest-svn
10-
# or
11-
easy_install pytest-svn
1210
```
1311

1412
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-verbose-parametrize/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ more descriptive than the default (which just outputs id numbers).
88
Install with your favourite package manager, and this plugin will automatically be enabled:
99
```bash
1010
pip install pytest-verbose-parametrize
11-
# or ..
12-
easy_install pytest-verbose-parametrize
1311
```
1412
## Usage
1513

pytest-virtualenv/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ The fixture has utility methods to install packages and list what's installed.
88
Install using your favourite package installer:
99
```bash
1010
pip install pytest-virtualenv
11-
# or
12-
easy_install pytest-virtualenv
1311
```
1412

1513
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

pytest-webdriver/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ on test failures.
99
Install using your favourite package installer:
1010
```bash
1111
pip install pytest-webdriver
12-
# or
13-
easy_install pytest-webdriver
1412
```
1513

1614
Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):

0 commit comments

Comments
 (0)