Skip to content

Commit

Permalink
Revert "dist: Remove support for building and distributing *.egg files"
Browse files Browse the repository at this point in the history
This reverts commit dd239fd.
  • Loading branch information
jcfr committed Mar 21, 2019
1 parent 54ca3c0 commit 80be7fa
Show file tree
Hide file tree
Showing 13 changed files with 29 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ COPY_FILES = VERSION CHANGES.md common_setup.py MANIFEST.in LICENSE
UPLOAD_OPTS =

# removed from PHONY: circleci_sip circleci_pyqt
.PHONY: extras copyfiles wheels sdists install develop test upload clean
.PHONY: extras copyfiles wheels eggs sdists install develop test upload clean

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

eggs: copyfiles
./foreach.sh --changed 'python setup.py bdist_egg'

sdists: copyfiles
./foreach.sh --changed 'python setup.py sdist'

Expand Down
2 changes: 2 additions & 0 deletions pytest-devpi-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Install using your favourite package manager:

```bash
pip install pytest-devpi-server
# or..
easy_install pytest-devpi-server
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-fixture-config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Install using your favourite package manager:

```bash
pip install pytest-fixture-config
# or..
easy_install pytest-fixture-config
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-git/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Creates an empty Git repository for testing that cleans up after itself on teard
Install using your favourite package installer:
```bash
pip install pytest-git
# or
easy_install pytest-git
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-listener/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Install using your favourite package manager:

```bash
pip install pytest-listener
# or..
easy_install pytest-listener
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-profiling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ generated using [gprof2dot](http://code.google.com/p/jrfonseca/wiki/Gprof2Dot) a
Install using your favourite package installer:
```bash
pip install pytest-profiling
# or
easy_install pytest-profiling
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-pyramid-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Install using your favourite package manager:

```bash
pip install pytest-pyramid-server
# or..
easy_install pytest-pyramid-server
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-qt-app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Set up a Q Application for QT with an X-Window Virtual Framebuffer (Xvfb).
Install using your favourite package installer:
```bash
pip install pytest-qt-app
# or
easy_install pytest-qt-app
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
4 changes: 3 additions & 1 deletion pytest-shutil/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ Install using your favourite package manager::

```bash
pip install pytest-shutil
```
# or..
easy_install pytest-shutil
```

## Workspace Fixture

Expand Down
2 changes: 2 additions & 0 deletions pytest-svn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Creates an empty SVN repository for testing that cleans up after itself on teard
Install using your favourite package installer:
```bash
pip install pytest-svn
# or
easy_install pytest-svn
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-verbose-parametrize/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ more descriptive than the default (which just outputs id numbers).
Install with your favourite package manager, and this plugin will automatically be enabled:
```bash
pip install pytest-verbose-parametrize
# or ..
easy_install pytest-verbose-parametrize
```
## Usage

Expand Down
2 changes: 2 additions & 0 deletions pytest-virtualenv/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ The fixture has utility methods to install packages and list what's installed.
Install using your favourite package installer:
```bash
pip install pytest-virtualenv
# or
easy_install pytest-virtualenv
```

Enable the fixture explicitly in your tests or conftest.py (not required when using setuptools entry points):
Expand Down
2 changes: 2 additions & 0 deletions pytest-webdriver/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on test failures.
Install using your favourite package installer:
```bash
pip install pytest-webdriver
# or
easy_install pytest-webdriver
```

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

0 comments on commit 80be7fa

Please sign in to comment.