diff options
-rw-r--r-- | .github/workflows/ci.yaml | 8 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | setup.cfg | 1 |
3 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d3e04ff2..5df2d456 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] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] 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] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] 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] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] 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] + python-version: [3.6, 3.7, 3.8, 3.9, 3.10-dev] steps: - name: Set temp directory run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV @@ -6,6 +6,7 @@ What's New in astroid 2.6.0? ============================ Release Date: TBA +* Astroid now support python 3.10. What's New in astroid 2.5.4? ============================ @@ -21,6 +21,7 @@ classifiers = Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Topic :: Software Development :: Libraries :: Python Modules |