Skip to content

Revert "dist: Remove support for building and distributing *.egg files" #135

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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