Skip to content

Commit cd117bb

Browse files
committed
Update python versions, unpin selenium.
1 parent 4d0b1e7 commit cd117bb

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

setup.py

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@
2020
name='testcontainers',
2121
packages=setuptools.find_packages(exclude=['tests']),
2222
version='2.5.0',
23-
description=('Library provides lightweight, throwaway '
24-
'instances of common databases, '
25-
'Selenium web browsers, or anything else that can '
26-
'run in a Docker container'),
23+
description='Library provides lightweight, throwaway instances of common databases, Selenium '
24+
'web browsers, or anything else that can run in a Docker container',
2725
author='Sergey Pirogov',
2826
author_email='[email protected]',
2927
url='https://github.com/testcontainers/testcontainers-python',
@@ -32,9 +30,12 @@
3230
'License :: OSI Approved :: Apache Software License',
3331
'Intended Audience :: Information Technology',
3432
'Intended Audience :: Developers',
35-
'Programming Language :: Python :: 3.4',
36-
'Topic :: Software Development :: '
37-
'Libraries :: Python Modules',
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.5',
35+
'Programming Language :: Python :: 3.6',
36+
'Programming Language :: Python :: 3.7',
37+
'Programming Language :: Python :: 3.8',
38+
'Topic :: Software Development :: Libraries :: Python Modules',
3839
'Operating System :: Microsoft :: Windows',
3940
'Operating System :: POSIX',
4041
'Operating System :: Unix',
@@ -51,10 +52,11 @@
5152
'mysql': ['sqlalchemy', 'pymysql'],
5253
'oracle': ['sqlalchemy', 'cx_Oracle'],
5354
'postgresql': ['sqlalchemy', 'psycopg2-binary'],
54-
'selenium': ['selenium==2.53.1'],
55+
'selenium': ['selenium'],
5556
'google-cloud-pubsub': ['google-cloud-pubsub'],
5657
'mongo': ['pymongo']
5758
},
5859
long_description_content_type="text/markdown",
5960
long_description=long_description,
61+
python_requires='~=3.5',
6062
)

0 commit comments

Comments
 (0)