summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-23 21:19:57 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-24 14:37:03 +0200
commitca03e8b70d96253924cf9858e4d2adb46a2d787f (patch)
tree0b32f424781adc972679b784d7dbc7fe810318f2
parentf8c347c6711904a18e6b08534a9d802d8feb1687 (diff)
downloadastroid-git-support-python-3.10.tar.gz
WIP : Add python 3.10 supportsupport-python-3.10
-rw-r--r--.github/workflows/ci.yaml8
-rw-r--r--ChangeLog1
-rw-r--r--setup.cfg1
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
diff --git a/ChangeLog b/ChangeLog
index 06d500b2..6a979b97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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?
============================
diff --git a/setup.cfg b/setup.cfg
index cc91c1f4..c11459e5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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