diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7247c62..31f7efa 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,10 +16,10 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Set up python 3.8 + - name: Set up python 3.7 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.7 cache: pip cache-dependency-path: | setup.py @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10"] fail-fast: false steps: - name: Checkout code @@ -61,8 +61,8 @@ jobs: version: ${{ env.PYRIGHT_VERSION }} python-version: ${{ matrix.python-version }} python-platform: Linux - # only add comments for 3.8 - no-comments: ${{ matrix.python-version != '3.8' }} + # only add comments for 3.7 + no-comments: ${{ matrix.python-version != '3.7' }} warnings: true - name: Run pyright (Windows) @@ -84,10 +84,10 @@ jobs: - name: Checkout code uses: actions/checkout@v3 - - name: Set up python 3.8 + - name: Set up python 3.7 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: 3.7 cache: pip cache-dependency-path: | setup.py diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 6be82dd..298ac19 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -17,7 +17,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 72f18e1..95dc2dc 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -18,10 +18,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.8 + - name: Set up Python 3.7 uses: actions/setup-python@v2 with: - python-version: 3.8 + python-version: 3.7 - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/.github/workflows/python-update-docs.yml b/.github/workflows/python-update-docs.yml index b2fbd3b..4932ae5 100644 --- a/.github/workflows/python-update-docs.yml +++ b/.github/workflows/python-update-docs.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: ['3.10'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index de68cd6..ede4b76 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8] + python-version: ['3.7'] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index c79dcf3..e7e32d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dynamic = ["version", "description"] [tool.black] line-length = 100 -target-version = ["py38", "py39", "py310"] +target-version = ["py37", "py38", "py39", "py310"] [tool.isort]