Skip to content

Commit 0a67c52

Browse files
committed
Update dependencies
1 parent 2faded7 commit 0a67c52

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

get-platformio.py

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,13 @@
3636
install_requires=[
3737
# Core
3838
"click==8.0.4", # >8.0.4 does not support Python 3.6
39-
"requests==2.27.1",
40-
"colorama==0.4.5",
39+
"urllib3<2", # issue 4614: urllib3 v2.0 only supports OpenSSL 1.1.1+
40+
"requests==2.31.0",
41+
"colorama==0.4.6",
4142
"semantic-version==2.8.5", # >2.8.5 does not support Python 3.6
42-
"certifi==2022.6.15",
43+
"certifi==2023.5.7",
4344
# Misc
44-
"wheel==0.37.1",
45+
"wheel==0.40.0",
4546
],
4647
packages=find_packages(),
4748
entry_points={

tox.ini

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# Copyright 2019-present PlatformIO Labs <[email protected]>
22

3-
[tox]
4-
envlist = py27,py35,py36,py37,py38,py39
5-
63
[testenv]
74
usedevelop = True
85
deps =
9-
py35,py36,py37,py38,py39: black
6+
black
107
isort
118
pylint
129
pytest

0 commit comments

Comments
 (0)