Skip to content

Commit 292e661

Browse files
authored
Add looseversion to setup and update tags to most recent python version
1 parent 0342080 commit 292e661

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,15 @@
6666
classifiers=[
6767
'Intended Audience :: Developers',
6868
'Natural Language :: English',
69-
'Programming Language :: Python :: 2',
70-
'Programming Language :: Python :: 2.7',
7169
'Programming Language :: Python :: 3',
7270
'Programming Language :: Python :: 3.5',
7371
'Programming Language :: Python :: 3.6',
7472
'Programming Language :: Python :: 3.7',
7573
'Programming Language :: Python :: 3.8',
74+
'Programming Language :: Python :: 3.9',
75+
'Programming Language :: Python :: 3.10',
76+
'Programming Language :: Python :: 3.11',
77+
'Programming Language :: Python :: 3.12',
7678
],
7779
packages=[
7880
'rethinkdb',
@@ -95,9 +97,10 @@
9597
'rethinkdb-repl = rethinkdb.__main__:startInterpreter'
9698
]
9799
},
98-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
100+
python_requires=">=3.5",
99101
install_requires=[
100-
'six'
102+
'six',
103+
'looseversion'
101104
],
102105
test_suite='tests'
103106
)

0 commit comments

Comments
 (0)