diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-22 21:18:21 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-04-23 18:01:06 +0200 |
commit | 3a75027a0699f0e6c7e273828fe2e1951adecee7 (patch) | |
tree | be47d795997f24919cb6300604fa58ab5d5f5672 | |
parent | a7726870813fd86e15842e80dddaa76035f6c7d5 (diff) | |
download | astroid-git-add-github-actions.tar.gz |
Remove python 3.10 support, revert lateradd-github-actions
-rw-r--r-- | .github/workflows/ci.yaml | 8 | ||||
-rw-r--r-- | ChangeLog | 2 |
2 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 60d20ad4..8ca9212f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -117,7 +117,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] + python-version: [3.6, 3.7, 3.8, 3.9] outputs: python-key: ${{ steps.generate-python-key.outputs.key }} steps: @@ -159,7 +159,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - name: Check out code from GitHub uses: actions/checkout@v2.3.4 @@ -240,7 +240,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] + python-version: [3.6, 3.7, 3.8, 3.9] outputs: python-key: ${{ steps.generate-python-key.outputs.key }} steps: @@ -282,7 +282,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] + python-version: [3.6, 3.7, 3.8, 3.9] steps: - name: Set temp directory run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV @@ -17,8 +17,6 @@ Release Date: TBA Closes PyCQA/pylint#4383 -* Astroid now support python 3.10. - * Moved from appveyor and travis to Github Actions for continuous integration. What's New in astroid 2.5.3? |