Skip to content

Commit b2b3b9c

Browse files
committed
Revert "dist: Remove support for building and distributing *.egg files"
This reverts commit dd239fd.
1 parent 54ca3c0 commit b2b3b9c

File tree

13 files changed

+29
-2
lines changed

13 files changed

+29
-2
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
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 sdists install develop test upload clean
19+
.PHONY: extras copyfiles wheels eggs sdists install develop test upload clean
2020

2121
extras:
2222
pip install $(EXTRA_DEPS)
@@ -28,6 +28,9 @@ 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+
3134
sdists: copyfiles
3235
./foreach.sh --changed 'python setup.py sdist'
3336

pytest-devpi-server/README.md

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

1414
```bash
1515
pip install pytest-devpi-server
16+
# or..
17+
easy_install pytest-devpi-server
1618
```
1719

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

pytest-fixture-config/README.md

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

1010
```bash
1111
pip install pytest-fixture-config
12+
# or..
13+
easy_install pytest-fixture-config
1214
```
1315

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

pytest-git/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ 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
1012
```
1113

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

pytest-listener/README.md

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

99
```bash
1010
pip install pytest-listener
11+
# or..
12+
easy_install pytest-listener
1113
```
1214

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

pytest-profiling/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ 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
1618
```
1719

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

pytest-pyramid-server/README.md

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

1111
```bash
1212
pip install pytest-pyramid-server
13+
# or..
14+
easy_install pytest-pyramid-server
1315
```
1416

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

pytest-qt-app/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ 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
1012
```
1113

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

pytest-shutil/README.md

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

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

1517
## Workspace Fixture
1618

pytest-svn/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ 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
1012
```
1113

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

pytest-verbose-parametrize/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ 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
1113
```
1214
## Usage
1315

pytest-virtualenv/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ 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
1113
```
1214

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

pytest-webdriver/README.md

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

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

0 commit comments

Comments
 (0)