Skip to content
Commits on Source (4)
python-easydev (0.9.37-1) UNRELEASED; urgency=medium
[ Andreas Tille ]
* Team upload.
* Fix watch file
* debhelper 11
* debhelper 12
* Activate Testsuite field
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.3.0
* Remove trailing whitespace in debian/copyright
[ Piotr Ożarowski ]
* do not use pkg_resources
-- Andreas Tille <tille@debian.org> Wed, 09 Jan 2019 16:45:57 +0100
python-easydev (0.9.35+dfsg-2) unstable; urgency=medium
......
......@@ -4,18 +4,20 @@ Uploaders: Afif Elghraoui <afif@debian.org>
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper (>= 12~),
dh-python,
python-all,
python-setuptools,
python-appdirs,
python-colorama,
python-pexpect,
python-pytest,
python3-all,
python3-setuptools,
python3-appdirs,
python3-colorama,
python3-pexpect
python3-pexpect,
python3-pytest,
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/python-easydev
Vcs-Git: https://salsa.debian.org/med-team/python-easydev.git
......
From: Piotr Ożarowski <piotr@debian.org>
Date: Wed, 16 Jan 2019 10:34:07 +0100
Origin: https://lists.debian.org/debian-python/2019/01/msg00060.html
Description: Do not use pkg_resources to avoid build failure
kg_resources.DistributionNotFound: The 'easydev' distribution was not found and is required by the application
--- a/easydev/__init__.py
+++ b/easydev/__init__.py
@@ -20,15 +20,6 @@ from __future__ import print_function
__version__ = "0.9.36"
-try:
- import pkg_resources
-except ImportError as err:
- print(err)
- print("version set to {} manually.".format(__version__))
- version = __version__
-else:
- version = pkg_resources.require("easydev")[0].version
- __version__ = version
from . import browser
from .browser import browse as onweb
external-appdirs.patch
privacy.patch
no_pkg_resources.patch