-
-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
54 changed files
with
1,560 additions
and
388 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 |
---|---|---|
|
@@ -19,21 +19,22 @@ jobs: | |
timeout-minutes: 20 | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Set up Python ${{ env.DEFAULT_PYTHON }} | ||
id: python | ||
uses: actions/setup-python@v4.2.0 | ||
uses: actions/setup-python@v4.3.0 | ||
with: | ||
python-version: ${{ env.DEFAULT_PYTHON }} | ||
- name: Generate partial Python venv restore key | ||
id: generate-python-key | ||
run: >- | ||
echo "::set-output name=key::base-venv-${{ env.CACHE_VERSION }}-${{ | ||
echo "key=base-venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test.txt', 'requirements_test_min.txt', | ||
'requirements_test_brain.txt', 'requirements_test_pre_commit.txt') }}" | ||
'requirements_test_brain.txt', 'requirements_test_pre_commit.txt') }}" >> | ||
$GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -52,11 +53,11 @@ jobs: | |
- name: Generate pre-commit restore key | ||
id: generate-pre-commit-key | ||
run: >- | ||
echo "::set-output name=key::pre-commit-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('.pre-commit-config.yaml') }}" | ||
echo "key=pre-commit-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT | ||
- name: Restore pre-commit environment | ||
id: cache-precommit | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: ${{ env.PRE_COMMIT_CACHE }} | ||
key: >- | ||
|
@@ -86,10 +87,10 @@ jobs: | |
python-key: ${{ steps.generate-python-key.outputs.key }} | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.2.0 | ||
uses: actions/setup-python@v4.3.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Qt | ||
|
@@ -99,12 +100,12 @@ jobs: | |
- name: Generate partial Python venv restore key | ||
id: generate-python-key | ||
run: >- | ||
echo "::set-output name=key::venv-${{ env.CACHE_VERSION }}-${{ | ||
echo "key=venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test.txt', 'requirements_test_min.txt', | ||
'requirements_test_brain.txt') }}" | ||
'requirements_test_brain.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -142,15 +143,15 @@ jobs: | |
COVERAGERC_FILE: .coveragerc | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.2.0 | ||
uses: actions/setup-python@v4.3.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: venv | ||
key: | ||
|
@@ -190,21 +191,21 @@ jobs: | |
# 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.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.2.0 | ||
uses: actions/setup-python@v4.3.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Generate partial Python venv restore key | ||
id: generate-python-key | ||
run: >- | ||
echo "::set-output name=key::venv-${{ env.CACHE_VERSION }}-${{ | ||
echo "key=venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test_min.txt', | ||
'requirements_test_brain.txt') }}" | ||
'requirements_test_brain.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: venv | ||
key: >- | ||
|
@@ -235,20 +236,20 @@ jobs: | |
python-version: ["pypy3.7", "pypy3.8", "pypy3.9"] | ||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3.0.2 | ||
uses: actions/checkout@v3.1.0 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
id: python | ||
uses: actions/setup-python@v4.2.0 | ||
uses: actions/setup-python@v4.3.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Generate partial Python venv restore key | ||
id: generate-python-key | ||
run: >- | ||
echo "::set-output name=key::venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test_min.txt') }}" | ||
echo "key=venv-${{ env.CACHE_VERSION }}-${{ | ||
hashFiles('setup.cfg', 'requirements_test_min.txt') }}" >> $GITHUB_OUTPUT | ||
- name: Restore Python virtual environment | ||
id: cache-venv | ||
uses: actions/[email protected].7 | ||
uses: actions/[email protected].11 | ||
with: | ||
path: venv | ||
key: >- | ||
|
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
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 |
---|---|---|
|
@@ -23,6 +23,7 @@ Maintainers | |
- Łukasz Rogalski <[email protected]> | ||
- Florian Bruhin <[email protected]> | ||
- Ashley Whetter <[email protected]> | ||
- Mark Byrne <[email protected]> | ||
- Dimitri Prybysh <[email protected]> | ||
- Areveny <[email protected]> | ||
|
||
|
@@ -39,7 +40,6 @@ Contributors | |
- David Gilman <[email protected]> | ||
- Julien Jehannet <[email protected]> | ||
- Calen Pennington <[email protected]> | ||
- Mark Byrne <[email protected]> | ||
- Tim Martin <[email protected]> | ||
- Phil Schaf <[email protected]> | ||
- Hugo van Kemenade <[email protected]> | ||
|
@@ -111,6 +111,7 @@ Contributors | |
- Stanislav Levin <[email protected]> | ||
- Simon Hewitt <[email protected]> | ||
- Serhiy Storchaka <[email protected]> | ||
- Saugat Pachhai (सौगात) <[email protected]> | ||
- Roy Wright <[email protected]> | ||
- Robin Jarry <[email protected]> | ||
- René Fritze <[email protected]> | ||
|
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
Oops, something went wrong.