summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Post-release version bump to 7.10.0Jiri Denemark2021-11-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.9.0Jiri Denemark2021-10-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.8.0Jiri Denemark2021-09-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.7.0v7.7.0Jiri Denemark2021-08-021-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.6.0Jiri Denemark2021-07-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.5.0Jiri Denemark2021-06-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.4.0Jiri Denemark2021-05-271-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Don't run sanity checks by defaultDaniel P. Berrangé2021-04-091-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The sanity check scripts verify that the binding covers all APIs in the libvirt library/headers being built against. This is primarily there for libvirt maintainers to identify when there are gaps in API coverage. This is not something downstream consumers of libvirt-python should be running themselves, so we shouldn't added it to tests by default. In addition if people are working on branches or submitting merge requests for python changes, we shouldn't block their work for failed API coverage sanity tests, if the python binding otherwise builds fine and passes regular unit tests. Thus, we introduce a new gitlab job "api-coverage" with some conditions: - If pushing to a branch, the job is treated as non-fatal - For regular scheduled builds, it is mandatory - Don't run in any other scenarios This job uses the artifacts from the centos-8-git-build job and re-runs the test suite, requesting the sanity tests to be run too. This will achieve the result of letting us see missing API coverage in nightly builds, without blocking other contributions. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* setup: use pytest instead of nose to run the test suiteJán Tomko2021-04-071-8/+8
| | | | | | | | | | | | The software we use for running tests - nose - has been deprecated in favor of nose2. We don't use anything nose-specific, just unittest.TestCase, which pytest can handle just fine. Switch to using pytest, which we already use for libvirt-dbus. Signed-off-by: Ján Tomko <jtomko@redhat.com>
* setup: drop have_libvirtaioJán Tomko2021-04-071-10/+2
| | | | | | | This function says we have libvirtaio on Python >= 3.3, however we already mandate Python >= 3.5 at the start of the file. Signed-off-by: Ján Tomko <jtomko@redhat.com>
* Post-release version bump to 7.3.0Jiri Denemark2021-04-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.2.0v7.2.0Jiri Denemark2021-03-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.1.0Jiri Denemark2021-01-151-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 7.0.0Jiri Denemark2020-12-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Avoid truncating python version number when running sanity testDaniel P. Berrangé2020-11-121-1/+3
| | | | | | | The current code assumes the version number string will be only three characters long, which fails with "3.10". Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Post-release version bump to 6.10.0Jiri Denemark2020-11-021-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 6.9.0Jiri Denemark2020-10-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 6.8.0Jiri Denemark2020-09-011-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 6.7.0Jiri Denemark2020-08-031-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* Post-release version bump to 6.6.0Jiri Denemark2020-07-231-1/+1
| | | | Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
* setup: post-release version bump to 6.5.0v6.5.0Daniel P. Berrangé2020-06-081-1/+1
| | | | Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* setup: post-release version bump to 6.4.0Daniel P. Berrangé2020-05-051-1/+1
| | | | Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Release of libvirt-python 6.3.0v6.3.0Daniel Veillard2020-05-051-1/+1
| | | | | | * setup.py: updated for the release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* setup: require python >= 3.5 to buildDaniel P. Berrangé2020-04-221-2/+6
| | | | | | | | Python 3.5 is the oldest Python version available across our supported build platforms. Reviewed-by: Philipp Hahn <hahn@univention.de> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Release of libvirt-python 6.2.0v6.2.0Daniel Veillard2020-04-021-1/+1
| | | | | | * setup.py: bumped version to 6.2.0 Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 6.1.0v6.1.0Daniel Veillard2020-03-031-1/+1
| | | | | | * setup.py : updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-6.0.0v6.0.0Daniel Veillard2020-01-151-1/+1
| | | | | | * setup.py: updated for the release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* setup: Accept 'nosetests3' as nosetests binaryAndrea Bolognani2019-12-091-0/+1
| | | | | | | This is the name used on Ubuntu. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
* Drop support for python 2Daniel P. Berrangé2019-12-041-3/+6
| | | | | | | | | python2 will be end of life by the time of the next libvirt release. All our supported build targets, including CentOS7, have a python3 build available. Reviewed-by: Michal Privoznik <mprivozn@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Release of libvirt-python 5.10.0v5.10.0Daniel Veillard2019-12-021-1/+1
| | | | | | * setup.py: update for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.9.0v5.9.0Daniel Veillard2019-11-061-1/+1
| | | | | | * setup.py: update for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.8.0v5.8.0Daniel Veillard2019-10-051-1/+1
| | | | | | * setup.py: updated version Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.7.0v5.7.0Daniel Veillard2019-09-031-1/+1
| | | | Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-5.6.0v5.6.0Daniel Veillard2019-08-051-1/+1
| | | | | | * setup.py: updated for new release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.5.0v5.5.0Daniel Veillard2019-07-021-1/+1
| | | | | | * setup.py: update for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of Libvirt-python 5.4.0v5.4.0Daniel Veillard2019-06-031-1/+1
| | | | Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.3.0v5.3.0Daniel Veillard2019-05-041-1/+1
| | | | | | * setup.py: bumped release version Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.2.0v5.2.0Daniel Veillard2019-04-031-1/+1
| | | | | | * setup.py: bumped release version up Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.1.0v5.1.0Daniel Veillard2019-03-041-1/+1
| | | | | | * setup.py: updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 5.0.0v5.0.0Daniel Veillard2019-01-151-1/+1
| | | | | | * setup.py: updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-4.10.0v4.10.0Daniel Veillard2018-12-031-1/+1
| | | | | | * setup.py: update to bump release number Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 4.9.0v4.9.0Daniel Veillard2018-11-041-1/+1
| | | | | | * setup.py: update for new release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python 4.8.0v4.8.0Daniel Veillard2018-10-011-1/+1
| | | | | | Signed-off-by: Daniel Veillard <veillard@redhat.com> - setup.py : updated for release
* Release of libvirt-python=4.7.0v4.7.0Daniel Veillard2018-09-031-1/+1
| | | | | | * setup.py: updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-4.6.0v4.6.0Daniel Veillard2018-08-061-1/+1
| | | | | | * setup.py: updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-4.5.0v4.5.0Daniel Veillard2018-07-021-1/+1
| | | | | | * setup.py: updated for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Release of libvirt-python-4.4.0v4.4.0Daniel Veillard2018-06-041-1/+1
| | | | | | * setup.py: update for release Signed-off-by: Daniel Veillard <veillard@redhat.com>
* Post-release version bump to 4.3.0Daniel P. Berrangé2018-04-031-1/+1
| | | | Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Post-release version bump to 4.2.0Daniel P. Berrangé2018-03-051-1/+1
| | | | Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* Release of libvirt-python 4.1.0v4.1.0Daniel Veillard2018-03-051-1/+1
| | | | Signed-off-by: Daniel Veillard <veillard@redhat.com>