Skip to content

Commit 7152514

Browse files
vivianludrickclaude
andcommitted
Relax psutil upper bound to allow psutil 7.x
browserstack-local 1.2.15 pinned psutil>=5.6.6,<7, which conflicts with environments that already have psutil 7.x installed (e.g. alongside the BrowserStack SDK). The only psutil API used is psutil.pid_exists(), which is unchanged in psutil 7, so the upper bound is unnecessary. Fixes LOC-7228 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent 6cbae0e commit 7152514

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
setup(
66
name = 'browserstack-local',
77
packages = ['browserstack'],
8-
version = '1.2.15',
8+
version = '1.2.16',
99
description = 'Python bindings for Browserstack Local',
1010
long_description=open('README.md').read(),
1111
long_description_content_type='text/markdown',
@@ -16,7 +16,7 @@
1616
keywords = ['BrowserStack', 'Local', 'selenium', 'testing'],
1717
classifiers = [],
1818
install_requires=[
19-
'psutil>=5.6.6,<7',
19+
'psutil>=5.6.6',
2020
],
2121
)
2222

0 commit comments

Comments
 (0)