From dff197a4e29573fbec70fd79255406a78028c0c2 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Sun, 27 Aug 2023 22:26:50 +0000 Subject: [PATCH] Release 0.0.58 --- .github/workflows/ci.yml | 12 ++++++------ pyproject.toml | 2 +- src/superagent/core/client_wrapper.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df11df7..0a5b56e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: ci on: [push] jobs: compile: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repo uses: actions/checkout@v3 @@ -13,13 +13,13 @@ jobs: python-version: 3.7 - name: Bootstrap poetry run: | - curl -sSL https://install.python-poetry.org | python - -y + curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1 - name: Install dependencies run: poetry install - name: Compile run: poetry run mypy . test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repo uses: actions/checkout@v3 @@ -29,7 +29,7 @@ jobs: python-version: 3.7 - name: Bootstrap poetry run: | - curl -sSL https://install.python-poetry.org | python - -y + curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1 - name: Install dependencies run: poetry install - name: Test @@ -38,7 +38,7 @@ jobs: publish: needs: [compile, test] if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repo uses: actions/checkout@v3 @@ -48,7 +48,7 @@ jobs: python-version: 3.7 - name: Bootstrap poetry run: | - curl -sSL https://install.python-poetry.org | python - -y + curl -sSL https://install.python-poetry.org | python - -y --version 1.5.1 - name: Install dependencies run: poetry install - name: Publish to pypi diff --git a/pyproject.toml b/pyproject.toml index 560416d..989f087 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "superagent-py" -version = "v0.0.57" +version = "v0.0.58" description = "" readme = "README.md" authors = [] diff --git a/src/superagent/core/client_wrapper.py b/src/superagent/core/client_wrapper.py index 2e42804..59c22d3 100644 --- a/src/superagent/core/client_wrapper.py +++ b/src/superagent/core/client_wrapper.py @@ -14,7 +14,7 @@ def get_headers(self) -> typing.Dict[str, str]: headers: typing.Dict[str, str] = { "X-Fern-Language": "Python", "X-Fern-SDK-Name": "superagent-py", - "X-Fern-SDK-Version": "v0.0.57", + "X-Fern-SDK-Version": "v0.0.58", } token = self._get_token() if token is not None: