[Pkg-libvirt-commits] [Git][libvirt-team/libvirt-python][debian/sid] 2 commits: New upstream version 10.7.0
Pino Toscano (@pino)
gitlab at salsa.debian.org
Sat Sep 7 21:32:53 BST 2024
Pino Toscano pushed to branch debian/sid at Libvirt Packaging Team / libvirt-python
Commits:
014e1b0a by Pino Toscano at 2024-09-07T22:30:28+02:00
New upstream version 10.7.0
- - - - -
38bf1c35 by Pino Toscano at 2024-09-07T22:30:40+02:00
Update upstream source from tag 'upstream/10.7.0'
Update to upstream version '10.7.0'
with Debian dir 0387950a19eb03b7037061eda61b339ccaa665a1
- - - - -
9 changed files:
- AUTHORS
- ChangeLog
- Makefile
- PKG-INFO
- VERSION
- debian/changelog
- examples/domstart.py
- libvirt-python.spec
- tox.ini
Changes:
=====================================
AUTHORS
=====================================
@@ -12,6 +12,7 @@ The individual contributors are
Adam Litke <agl at us.ibm.com>
Alex Jia <ajia at redhat.com>
Andrea Bolognani <abologna at redhat.com>
+ Ariel Otilibili <otilibil at eurecom.fr>
Bastian Germann <bage at linutronix.de>
Beraldo Leal <bleal at redhat.com>
Boris Fiuczynski <fiuczy at linux.vnet.ibm.com>
=====================================
ChangeLog
=====================================
@@ -1,3 +1,33 @@
+ 2024- 8- 8 Ariel Otilibili <otilibil at eurecom.fr>
+
+ example/domstart.py: Removed useless brackets for tuple unpacking
+
+
+ 2024- 8- 8 Ariel Otilibili <otilibil at eurecom.fr>
+
+ tox.ini: Bumped environment list for Python
+ * aligned list with supported Python versions [1]
+ * as of today, supported versions are 3.8 to 3.12
+
+ https://devguide.python.org/versions/
+
+
+
+ 2024- 8- 8 Ariel Otilibili <otilibil at eurecom.fr>
+
+ Makefile: `make check` now computes env variable on the fly
+ * env variable used to be Python3.6
+ * Python3.6 is end of life since December 2021 [1].
+
+ [1] https://devguide.python.org/versions/
+
+
+
+ 2024- 8- 5 Jiri Denemark <jdenemar at redhat.com>
+
+ Post-release version bump to 10.7.0
+
+
2024- 7- 1 Jiri Denemark <jdenemar at redhat.com>
Post-release version bump to 10.6.0
=====================================
Makefile
=====================================
@@ -1,6 +1,7 @@
# Shim wrapper around setup.py to allow for familiar build targets
-PYTHON ?= python
+PYTHON ?= python
+VERSION := $(shell $(PYTHON) -c 'import sys; print("{}{}".format(sys.version_info.major, sys.version_info.minor))')
all:
$(PYTHON) -m build
@@ -12,7 +13,7 @@ clean:
rm -rf build/ dist/
check: all
- tox -e py36
+ tox -e py$(VERSION)
test: all
tox
=====================================
PKG-INFO
=====================================
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: libvirt-python
-Version: 10.6.0
+Version: 10.7.0
Summary: The libvirt virtualization API python binding
Home-page: http://www.libvirt.org
Maintainer: Libvirt Maintainers
=====================================
VERSION
=====================================
@@ -1 +1 @@
-10.6.0
+10.7.0
=====================================
debian/changelog
=====================================
@@ -1,3 +1,11 @@
+libvirt-python (10.7.0-1~1.gbp8e0fc6) UNRELEASED; urgency=medium
+
+ ** SNAPSHOT build @8e0fc67609eb8278e1926a2295a15f8b89ae5d40 **
+
+ * New upstream version 10.7.0
+
+ -- Pino Toscano <pino at debian.org> Sat, 07 Sep 2024 22:30:40 +0200
+
libvirt-python (10.6.0-1) unstable; urgency=medium
* New upstream version 10.6.0
=====================================
examples/domstart.py
=====================================
@@ -27,7 +27,7 @@ parser = ArgumentParser(description=__doc__)
parser.add_argument("file", metavar="DOMAIN.XML", help="XML configuration of the domain in libvirt's XML format")
args = parser.parse_args()
-(name, xmldesc) = read_domain(args.file)
+name, xmldesc = read_domain(args.file)
try:
conn = libvirt.open(None)
=====================================
libvirt-python.spec
=====================================
@@ -14,7 +14,7 @@
Summary: The libvirt virtualization API python3 binding
Name: libvirt-python
-Version: 10.6.0
+Version: 10.7.0
Release: 1%{?dist}
Source0: https://libvirt.org/sources/python/%{name}-%{version}.tar.gz
Url: https://libvirt.org
=====================================
tox.ini
=====================================
@@ -1,5 +1,5 @@
[tox]
-envlist = py36,py37,py38
+envlist = py38,py39,py310,py311,py312
[testenv]
deps=
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/compare/9a1a19e02f7c9f48a8de9cfef7bb7d3d6cdfba72...38bf1c35795de444675e858cd8601c64ebe59cee
--
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/compare/9a1a19e02f7c9f48a8de9cfef7bb7d3d6cdfba72...38bf1c35795de444675e858cd8601c64ebe59cee
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-libvirt-commits/attachments/20240907/b6953834/attachment-0001.htm>
More information about the Pkg-libvirt-commits
mailing list