-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
qsv now links against Python 3.11 for the
py
command (#576)
* `python`: we now link against python 3.11 - the latest stable python * change all GH workflows to use python 3.11 * add empty DLLs directory to suppress python 3.11 warning as per python/cpython#98790
- Loading branch information
1 parent
545bb32
commit 5f2a868
Showing
10 changed files
with
15 additions
and
12 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 |
---|---|---|
|
@@ -78,7 +78,7 @@ jobs: | |
ref: ${{ needs.analyze-tags.outputs.previous-tag }} | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: build prep for x86_64-unknown-linux-musl | ||
if: ${{ matrix.job.musl-prep }} | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -149,7 +149,7 @@ jobs: | |
ref: ${{ needs.analyze-tags.outputs.previous-tag }} | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: build prep for aarch64-apple-darwin | ||
if: ${{ matrix.job.build-prep }} | ||
run: | | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: Update Rust Beta | ||
run: | | ||
rustup update beta | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: Update Rust | ||
run: rustup update | ||
- name: Setup Rust-cache | ||
|
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 |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: Install and Run Redis | ||
run: | | ||
sudo apt-get install redis-server | ||
|
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 |
---|---|---|
|
@@ -18,13 +18,16 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: Update Rust | ||
run: rustup update | ||
- name: Setup Rust-cache | ||
uses: Swatinem/rust-cache@v1 | ||
with: | ||
key: qsv-cache | ||
- name: make empty DLLs directory to prevent spurious python warning | ||
run: | | ||
mkdir DLLs | ||
- name: Run tests | ||
run: cargo test --verbose --locked --features=apply,fetch,foreach,generate,lua,python,full | ||
- name: Run luajit tests separately as its mutually exclusive with lua feature | ||
|
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10' | ||
python-version: '3.11' | ||
- name: Install and Run Redis | ||
run: | | ||
sudo apt-get install redis-server | ||
|
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 |
---|---|---|
|
@@ -131,7 +131,7 @@ jobs: | |
ref: 'master' | ||
- uses: actions/[email protected] | ||
with: | ||
python-version: '3.10.7' | ||
python-version: '3.11' | ||
- name: build prep for aarch64-apple-darwin | ||
if: ${{ matrix.job.build-prep }} | ||
run: | | ||
|
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