We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06514f2 commit 2e4bf5dCopy full SHA for 2e4bf5d
1 file changed
setup.py
@@ -72,8 +72,8 @@ def read(fname):
72
packages=["javaobj", "javaobj.v1", "javaobj.v2"],
73
test_suite="tests",
74
install_requires=[
75
- 'enum34;python_version<="3.4"',
76
- 'typing;python_version<="3.4"',
+ "enum34; python_version<'3.4'",
+ "typing; python_version<'3.5'"
77
],
78
long_description=read("README.md"),
79
long_description_content_type="text/markdown",
@@ -91,6 +91,8 @@ def read(fname):
91
"Programming Language :: Python :: 3.10",
92
"Programming Language :: Python :: 3.11",
93
"Programming Language :: Python :: 3.12",
94
+ "Programming Language :: Python :: 3.13",
95
+ "Programming Language :: Python :: 3.14",
96
"Topic :: Software Development :: Libraries :: Python Modules",
97
98
)
0 commit comments