Skip to content

Commit

Permalink
Allow auto minor version upgrade for requests and yarl
Browse files Browse the repository at this point in the history
* requests needed a security fix
* yarl failed the release as 1.8.2 is deprecated according to the logs
  • Loading branch information
NadavUp committed Mar 5, 2024
1 parent aebb589 commit 81a7d4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
SIMPLE=$(echo ${{ github.ref_name }} | sed -e s/^v//)
echo "simple=$SIMPLE" >> $GITHUB_OUTPUT
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "upsolver-sdk-python"
version = "0.1.9"
version = "0.1.10"
description = "Python SDK for Upsolver"
authors = ["Upsolver Team <info@upsolver.com>"]

Expand All @@ -15,8 +15,8 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "2.28.2"
yarl = "1.8.2"
requests = "^2.31.0"
yarl = "^1.8.2"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
Expand Down

0 comments on commit 81a7d4e

Please sign in to comment.