Skip to content

Commit 2e4bf5d

Browse files
committed
Fixed setup.py
Signed-off-by: Thomas Calmant <thomas.calmant@gmail.com>
1 parent 06514f2 commit 2e4bf5d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ def read(fname):
7272
packages=["javaobj", "javaobj.v1", "javaobj.v2"],
7373
test_suite="tests",
7474
install_requires=[
75-
'enum34;python_version<="3.4"',
76-
'typing;python_version<="3.4"',
75+
"enum34; python_version<'3.4'",
76+
"typing; python_version<'3.5'"
7777
],
7878
long_description=read("README.md"),
7979
long_description_content_type="text/markdown",
@@ -91,6 +91,8 @@ def read(fname):
9191
"Programming Language :: Python :: 3.10",
9292
"Programming Language :: Python :: 3.11",
9393
"Programming Language :: Python :: 3.12",
94+
"Programming Language :: Python :: 3.13",
95+
"Programming Language :: Python :: 3.14",
9496
"Topic :: Software Development :: Libraries :: Python Modules",
9597
],
9698
)

0 commit comments

Comments
 (0)