diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 487201b..3d7a051 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,6 +8,10 @@ on: jobs: release: runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + repository-projects: write steps: - uses: actions/checkout@v3 @@ -18,7 +22,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: diff --git a/pyproject.toml b/pyproject.toml index ff5bfdf..368aa39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] @@ -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"