Skip to content

Commit d286d0b

Browse files
committed
Allow auto minor version upgrade for requests and yarl
* requests needed a security fix * yarl failed the release as 1.8.2 is deprecated according to the logs
1 parent b513206 commit d286d0b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
SIMPLE=$(echo ${{ github.ref_name }} | sed -e s/^v//)
2222
echo "simple=$SIMPLE" >> $GITHUB_OUTPUT
2323
24-
2524
- name: Set up Python
2625
uses: actions/setup-python@v5
2726
with:

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "upsolver-sdk-python"
3-
version = "0.1.9"
3+
version = "0.1.12"
44
description = "Python SDK for Upsolver"
55
authors = ["Upsolver Team <[email protected]>"]
66

@@ -15,8 +15,8 @@ packages = [
1515
]
1616
[tool.poetry.dependencies]
1717
python = "^3.7"
18-
requests = "2.28.2"
19-
yarl = "1.8.2"
18+
requests = "^2.31.0"
19+
yarl = "^1.8.2"
2020

2121
[tool.poetry.group.dev.dependencies]
2222
pytest = "^7.2.1"

0 commit comments

Comments
 (0)