From d10594c530233bd612b4dab668113169c118d359 Mon Sep 17 00:00:00 2001 From: "Tiago A. Silva" Date: Fri, 18 Nov 2022 17:30:53 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20bug=20with=20PYPI=20creden?= =?UTF-8?q?tials.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yml | 2 +- .github/workflows/test-suite.yml | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 39d9624..c965549 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,7 +28,7 @@ jobs: - name: "Publish to PyPI" run: "scripts/release" env: - TWINE_USERNAME: __packages__ + TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} - name: "Deploy docs" run: curl -X POST '${{ secrets.DEPLOY_DOCS }}' diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index b74d140..57fef46 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10"] steps: - uses: "actions/checkout@v3" diff --git a/pyproject.toml b/pyproject.toml index 34c9589..7307283 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ dev = [ "black>=22.10.0,<23.0.0", "flake8>=3.8.3,<6.0.0", "isort>=5.0.6,<6.0.0", - "mypy>=0.991", + "mypy==0.991", "pre-commit >=2.17.0,<3.0.0", "loguru>=0.6.0,<0.7.0", "watchfiles>=0.16.1,<0.20.0"