Due to constraints update(rpds-py) in requirements, Tempest master stopped working on python 3.10. - https://review.opendev.org/c/openstack/requirements/+/990790 Due to same reason, Tempest needs to drop the python 3.10 support[1]. Because Tempest master cannot support py3.10 anymore, it needs to be dropped from tempest plugins also. [1] https://review.opendev.org/c/openstack/tempest/+/991161 Change-Id: I2514d6529d0edfabf9555805a89808c64c9bf284 Signed-off-by: Ghanshyam Maan <gmaan.os14@gmail.com>
35 lines
1.0 KiB
TOML
35 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["pbr>=6.1.1"]
|
|
build-backend = "pbr.build"
|
|
|
|
[project]
|
|
name = "blazar_tempest_plugin"
|
|
description = "Tempest plugin for Blazar"
|
|
authors = [
|
|
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
|
|
]
|
|
readme = {file = "README.rst", content-type = "text/x-rst"}
|
|
license = "Apache-2.0"
|
|
dynamic = ["version", "dependencies"]
|
|
requires-python = ">=3.11"
|
|
classifiers = [
|
|
"Environment :: OpenStack",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
|
|
[project.urls]
|
|
Repository = "https://opendev.org/openstack/blazar-tempest-plugin"
|
|
|
|
[project.entry-points."tempest.test_plugins"]
|
|
blazar_tests = "blazar_tempest_plugin.plugin:BlazarTempestPlugin"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["blazar_tempest_plugin*"]
|