Skip to content

Commit 5d49f3a

Browse files
authored
Merge pull request #98 from stackhpc/upstream/master-2026-05-25
Synchronise master with upstream
2 parents 57ac9ef + 5bd55e2 commit 5d49f3a

3 files changed

Lines changed: 13 additions & 12 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,25 @@ build-backend = "pbr.build"
44

55
[project]
66
name = "cloudkitty-dashboard"
7-
description = "CloudKitty Horizon dashboard"
7+
description = "CloudKitty UI for Horizon"
88
authors = [
99
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
1010
]
1111
readme = {file = "README.rst", content-type = "text/x-rst"}
12-
license = {text = "Apache-2.0"}
12+
license = "Apache-2.0"
1313
dynamic = ["version", "dependencies"]
14-
requires-python = ">=3.10"
14+
requires-python = ">=3.11"
1515
classifiers = [
1616
"Environment :: OpenStack",
1717
"Intended Audience :: Information Technology",
1818
"Intended Audience :: System Administrators",
19-
"License :: OSI Approved :: Apache Software License",
2019
"Operating System :: POSIX :: Linux",
2120
"Programming Language :: Python",
2221
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.10",
2422
"Programming Language :: Python :: 3.11",
2523
"Programming Language :: Python :: 3.12",
2624
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3.14",
2726
"Programming Language :: Python :: 3 :: Only",
2827
"Programming Language :: Python :: Implementation :: CPython",
2928
]
@@ -32,7 +31,5 @@ classifiers = [
3231
Homepage = "https://docs.openstack.org/cloudkitty-dashboard/latest/"
3332
Repository = "https://opendev.org/openstack/cloudkitty-dashboard"
3433

35-
[tool.setuptools]
36-
packages = [
37-
"cloudkittydashboard"
38-
]
34+
[tool.setuptools.packages.find]
35+
include = ["cloudkittydashboard*"]
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
upgrade:
3+
- Support for Python 3.10 has been dropped.
4+
5+
features:
6+
- Added support for Python 3.14.

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,4 @@
1515

1616
import setuptools
1717

18-
setuptools.setup(
19-
setup_requires=['pbr>=1.8'],
20-
pbr=True)
18+
setuptools.setup(pbr=True)

0 commit comments

Comments
 (0)