-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to using python 3 for building the dh-virtualenv deb. Python2 is dead, and the existing build fails for Ubuntu 20.04 and debian testing (specifically, python-mock and python-sphinx no longer exist).
- Loading branch information
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,22 +2,22 @@ Source: dh-virtualenv | |
Section: python | ||
Priority: optional | ||
Maintainer: Jyrki Pulliainen <[email protected]> | ||
Build-Depends: debhelper (>= 9), python(>= 2.6.6-3~), | ||
python-setuptools, python-sphinx, python-mock, dh-exec, dh-python, | ||
Build-Depends: debhelper (>= 9), python3, | ||
python3-setuptools, python3-sphinx, python3-mock, dh-exec, dh-python, | ||
# python-sphinx-rtd-theme doesn't exist in distributions | ||
# predating Debian Jessie and Ubuntu Xenial. On these legacy | ||
# systems: | ||
# 1. Comment the dependency below. | ||
# 2. pip install sphinx_rtd_theme. | ||
# 3. Proceed with your build process (typically dpkg-build). | ||
# See https://github.com/spotify/dh-virtualenv/issues/230 | ||
python-sphinx-rtd-theme | ||
python3-sphinx-rtd-theme | ||
Standards-Version: 4.2.1 | ||
Homepage: http://www.github.com/spotify/dh-virtualenv | ||
|
||
Package: dh-virtualenv | ||
Architecture: all | ||
Depends: ${python:Depends}, ${misc:Depends}, ${sphinxdoc:Depends}, | ||
Depends: ${python3:Depends}, ${misc:Depends}, ${sphinxdoc:Depends}, | ||
virtualenv | python-virtualenv (>= 1.7) | python3-venv | ||
Description: wrap and build python packages using virtualenv | ||
This package provides a dh sequencer that helps you to deploy your | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters