[Pkg-libvirt-commits] [Git][libvirt-team/libvirt-python][upstream/latest] New upstream version 10.7.0

Pino Toscano (@pino) gitlab at salsa.debian.org
Sat Sep 7 21:32:41 BST 2024



Pino Toscano pushed to branch upstream/latest 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
- - - - -


8 changed files:

- AUTHORS
- ChangeLog
- Makefile
- PKG-INFO
- VERSION
- 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


=====================================
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/-/commit/014e1b0aafd6e0232e0642b8ce0b3717bac9eb02

-- 
View it on GitLab: https://salsa.debian.org/libvirt-team/libvirt-python/-/commit/014e1b0aafd6e0232e0642b8ce0b3717bac9eb02
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/cad3f5da/attachment-0001.htm>


More information about the Pkg-libvirt-commits mailing list