Skip to content

Commit 75a8820

Browse files
authored
Merge pull request #289 from brendan-w/user/brendan/uprev-pint
Uprev pint to 0.24.* for python 3.13+ support
2 parents a47d791 + c30cfc3 commit 75a8820

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@
1616
"Operating System :: POSIX :: Linux",
1717
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
1818
"Topic :: System :: Monitoring",
19-
"Programming Language :: Python :: 2",
2019
"Programming Language :: Python :: 3",
20+
"Programming Language :: Python :: 3.9",
21+
"Programming Language :: Python :: 3.10",
22+
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
24+
"Programming Language :: Python :: 3.13",
2125
"Development Status :: 3 - Alpha",
2226
"Topic :: System :: Logging",
2327
"Intended Audience :: Developers",
@@ -30,5 +34,5 @@
3034
packages=find_packages(),
3135
include_package_data=True,
3236
zip_safe=False,
33-
install_requires=["pyserial==3.*", "pint==0.20.*"],
37+
install_requires=["pyserial==3.*", "pint==0.24.*"],
3438
)

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tox]
22
envlist =
3-
py{38,39,310,311},
3+
py{39,310,311,312,313},
44
coverage
55

66
[gh-actions]
77
python =
8-
3.8: py38
98
3.9: py39
109
3.10: py310
1110
3.11: py311
11+
3.12: py312
12+
3.13: py313
1213

1314
[testenv]
1415
usedevelop = true

0 commit comments

Comments
 (0)