Skip to content

Commit 45c6ea8

Browse files
authored
Merge pull request #310 from rethinkdb/lsabi-patch-1
Add looseversion to setup and update tags to most recent python version
2 parents 0342080 + b227a12 commit 45c6ea8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@
7373
'Programming Language :: Python :: 3.6',
7474
'Programming Language :: Python :: 3.7',
7575
'Programming Language :: Python :: 3.8',
76+
'Programming Language :: Python :: 3.9',
77+
'Programming Language :: Python :: 3.10',
78+
'Programming Language :: Python :: 3.11',
79+
'Programming Language :: Python :: 3.12',
7680
],
7781
packages=[
7882
'rethinkdb',
@@ -95,9 +99,10 @@
9599
'rethinkdb-repl = rethinkdb.__main__:startInterpreter'
96100
]
97101
},
98-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
102+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, >=3.5",
99103
install_requires=[
100-
'six'
104+
'six',
105+
'looseversion'
101106
],
102107
test_suite='tests'
103108
)

0 commit comments

Comments
 (0)