-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into same-name-stdlib
- Loading branch information
Showing
127 changed files
with
3,552 additions
and
3,111 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
add5f7b8eba427de9d39caae864bbc6dc37ef980 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,10 @@ jobs: | |
timeout-minutes: 20 | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.0.0 | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/setup-python@v4.6.1 | ||
uses: actions/setup-python@v4.7.0 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
check-latest: true | ||
|
@@ -39,7 +39,7 @@ jobs: | |
'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -59,7 +59,7 @@ jobs: | |
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT | ||
- name: Restore pre-commit environment | ||
id: cache-precommit | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ env.PRE_COMMIT_CACHE }} | ||
key: >- | ||
|
@@ -81,15 +81,15 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.8, 3.9, "3.10", "3.11"] | ||
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"] | ||
outputs: | ||
python-key: ${{ steps.generate-python-key.outputs.key }} | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.0.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.6.1 | ||
uses: actions/setup-python@v4.7.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
check-latest: true | ||
|
@@ -106,7 +106,7 @@ jobs: | |
'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -125,7 +125,7 @@ jobs: | |
. venv/bin/activate | ||
pytest --cov | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: coverage-linux-${{ matrix.python-version }} | ||
path: .coverage | ||
|
@@ -138,17 +138,17 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [3.8, 3.9, "3.10", "3.11"] | ||
python-version: [3.8, 3.9, "3.10", "3.11", "3.12-dev"] | ||
steps: | ||
- name: Set temp directory | ||
run: echo "TEMP=$env:USERPROFILE\AppData\Local\Temp" >> $env:GITHUB_ENV | ||
# Workaround to set correct temp directory on Windows | ||
# https://github.com/actions/virtual-environments/issues/712 | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.0.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.6.1 | ||
uses: actions/setup-python@v4.7.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
check-latest: true | ||
|
@@ -160,7 +160,7 @@ jobs: | |
'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -179,7 +179,7 @@ jobs: | |
. venv\\Scripts\\activate | ||
pytest --cov | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: coverage-windows-${{ matrix.python-version }} | ||
path: .coverage | ||
|
@@ -195,10 +195,10 @@ jobs: | |
python-version: ["pypy3.8", "pypy3.10"] | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.0.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.6.1 | ||
uses: actions/setup-python@v4.7.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
check-latest: true | ||
|
@@ -210,7 +210,7 @@ jobs: | |
}}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].1 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -229,7 +229,7 @@ jobs: | |
. venv/bin/activate | ||
pytest --cov | ||
- name: Upload coverage artifact | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: coverage-pypy-${{ matrix.python-version }} | ||
path: .coverage | ||
|
@@ -241,10 +241,10 @@ jobs: | |
needs: ["tests-linux", "tests-windows", "tests-pypy"] | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4.0.0 | ||
- name: Set up Python 3.11 | ||
id: python | ||
uses: actions/setup-python@v4.6.1 | ||
uses: actions/setup-python@v4.7.0 | ||
with: | ||
python-version: "3.11" | ||
check-latest: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,5 @@ astroid.egg-info/ | |
.mypy_cache/ | ||
venv | ||
doc/_build/ | ||
doc/api/base_nodes/ | ||
doc/api/nodes/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ Contributors | |
- Neil Girdhar <[email protected]> | ||
- Michał Masłowski <[email protected]> | ||
- Mateusz Bysiek <[email protected]> | ||
- Marcelo Trylesinski <[email protected]> | ||
- Leandro T. C. Melo <[email protected]> | ||
- Konrad Weihmann <[email protected]> | ||
- Kian Meng, Ang <[email protected]> | ||
|
Oops, something went wrong.