Skip to content

Commit cb24102

Browse files
committed
update supported Python versions to use match
1 parent 2f0e3d1 commit cb24102

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
python_version:
16-
- "3.9"
1716
- "3.10"
1817
- "3.11"
1918
- "3.12"

pyproject.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ include = ["mccann_hub.odoolib", "mccann_hub.odoolib.*"]
88

99
[project]
1010
name = "mccann_hub-odoo_client_lib"
11-
version = "2.0.1"
11+
version = "2.0.2"
1212
description = "Extended Odoo Client Library with additional functionality"
1313
readme = "README.rst"
1414
authors = [
@@ -20,14 +20,13 @@ classifiers = [
2020
"License :: OSI Approved :: BSD License",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.9",
2423
"Programming Language :: Python :: 3.10",
2524
"Programming Language :: Python :: 3.11",
2625
"Programming Language :: Python :: 3.12",
2726
"Programming Language :: Python :: 3.13",
2827
]
29-
keywords = ["openerp", "library", "communication", "rpc", "xml-rpc", "net-rpc", "xmlrpc", "python", "client", "lib", "web service"]
30-
requires-python = ">=3.9"
28+
keywords = ["openerp", "odoo", "library", "communication", "rpc", "xml-rpc", "net-rpc", "xmlrpc", "python", "client", "lib", "web service"]
29+
requires-python = ">=3.10"
3130
dependencies = [
3231
"requests",
3332
"asyncio",

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
setup(
3636
name="mccann_hub-odoo_client_lib",
37-
version="2.0.1",
37+
version="2.0.2",
3838
description="Extended Odoo Client Library allows to easily interact with Odoo in Python.",
3939
author="Nicolas Vanhoren, Jimmy McCann",
4040
author_email="jabez007@users.noreply.github.com",
@@ -47,16 +47,15 @@
4747
"asyncio",
4848
],
4949
long_description="Extended Odoo Client Library with additional features. See original project home page for additional information: https://github.com/odoo/odoo-client-lib .",
50-
keywords="openerp library com communication rpc xml-rpc net-rpc xmlrpc python client lib web service",
50+
keywords="openerp odoo library com communication rpc xml-rpc net-rpc xmlrpc python client lib web service",
5151
license="BSD",
5252
classifiers=[
5353
"License :: OSI Approved :: BSD License",
5454
"Programming Language :: Python",
55-
"Programming Language :: Python :: 3.9",
5655
"Programming Language :: Python :: 3.10",
5756
"Programming Language :: Python :: 3.11",
5857
"Programming Language :: Python :: 3.12",
5958
"Programming Language :: Python :: 3.13",
6059
],
61-
python_requires=">=3.9",
60+
python_requires=">=3.10",
6261
)

0 commit comments

Comments
 (0)