Skip to content
Open
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
2 changes: 1 addition & 1 deletion DistUtilsExtra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# pylint: disable=invalid-name
__version__ = "3.0"
__version__ = "3.1"
1 change: 1 addition & 0 deletions debian/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/files
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
python-distutils-extra (3.1) unstable; urgency=medium

* Team upload.
* Use setuptools.command.sdist in tests rather than
setuptools.command.register (closes: #1086223, #1086308).

-- Colin Watson <[email protected]> Tue, 19 Nov 2024 19:09:39 +0100

python-distutils-extra (3.0) unstable; urgency=medium

* Team upload.
Expand Down
4 changes: 2 additions & 2 deletions test/auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ def test_requires_provides(self):
self._mksrc(
"foo/stuff.py",
"""import xml.parsers.expat
import os, os.path, email.mime, setuptools.command.register
import os, os.path, email.mime, setuptools.command.sdist
from email import header as h
import httplib2.iri2uri, unknown
from . bar import poke
Expand Down Expand Up @@ -936,7 +936,7 @@ def test_requires_provides(self):
"pkg_resources",
"gi.repository.GLib",
"gi.repository.GObject",
"setuptools.command.register",
"setuptools.command.sdist",
]
),
)
Expand Down
Loading