Skip to content

Commit de4206f

Browse files
committed
[RD-41105] Bumped version and we now only support python>=3.8
- We will not longer support older versions of python. We will remove any python2.7 backwards compatibility code going forward when we see it.
1 parent b2d5f85 commit de4206f

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ addons:
55
chrome: stable
66
language: python
77
python:
8-
- "2.7"
9-
- "3.5"
8+
- "3.8"
109
env:
1110
global:
1211
- DEFAULT_CHROME_BROWSER_PATH=google-chrome-stable

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@
1212

1313
setup(
1414
name="browserdebuggertools",
15-
version="5.4.0",
15+
version="6.0.0",
16+
python_requires='>=3.8',
1617
packages=PACKAGES,
1718
install_requires=requires,
1819
license="GNU General Public License v3",
1920
description="A client which calls remote web browser debugger methods",
2021
long_description_content_type="text/markdown",
2122
long_description=open("README.md").read(),
2223
url="https://github.com/scivisum/browser-debugger-tools",
23-
author="SciVisum LTD",
24+
author="ThinkTribe LTD",
2425
author_email="rd@scivisum.co.uk",
2526
classifiers=[
2627
'Intended Audience :: Developers',
2728
"Programming Language :: Python",
28-
"Programming Language :: Python :: 2.7",
29-
"Programming Language :: Python :: 3.5",
29+
"Programming Language :: Python :: 3.8",
3030
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
3131
"Operating System :: OS Independent"
3232
],

0 commit comments

Comments
 (0)