Skip to content

Commit e79b139

Browse files
committed
trying to go with CPython 3.11
1 parent a0c34da commit e79b139

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ jobs:
250250
- uses: dtolnay/rust-toolchain@stable
251251
- uses: actions/setup-python@v2
252252
with:
253-
python-version: "3.10"
253+
python-version: "3.11"
254254
- name: Set up the Windows environment
255255
shell: bash
256256
run: |
@@ -266,7 +266,7 @@ jobs:
266266
run: cargo build --release --verbose --features=threading ${{ env.CARGO_ARGS }}
267267
- uses: actions/setup-python@v2
268268
with:
269-
python-version: "3.10"
269+
python-version: "3.11"
270270
- name: run snippets
271271
run: python -m pip install -r requirements.txt && pytest -v
272272
working-directory: ./extra_tests
@@ -349,7 +349,7 @@ jobs:
349349
run: cargo clippy --manifest-path=wasm/lib/Cargo.toml -- -Dwarnings
350350
- uses: actions/setup-python@v2
351351
with:
352-
python-version: "3.10"
352+
python-version: "3.11"
353353
- name: install flake8
354354
run: python -m pip install flake8
355355
- name: run lint
@@ -411,7 +411,7 @@ jobs:
411411
tar -xzf geckodriver-v0.30.0-linux64.tar.gz -C geckodriver
412412
- uses: actions/setup-python@v2
413413
with:
414-
python-version: "3.10"
414+
python-version: "3.11"
415415
- run: python -m pip install -r requirements.txt
416416
working-directory: ./wasm/tests
417417
- uses: actions/setup-node@v1

.github/workflows/cron-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
RUSTC_WRAPPER: './scripts/codecoverage-rustc-wrapper.sh'
3030
- uses: actions/setup-python@v2
3131
with:
32-
python-version: "3.10"
32+
python-version: "3.11"
3333
- run: python -m pip install pytest
3434
working-directory: ./extra_tests
3535
- name: run snippets

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RustPython requires the following:
2525
stable version: `rustup update stable`
2626
- If you do not have Rust installed, use [rustup](https://rustup.rs/) to
2727
do so.
28-
- CPython version 3.10 or higher
28+
- CPython version 3.11 or higher
2929
- CPython can be installed by your operating system's package manager,
3030
from the [Python website](https://www.python.org/downloads/), or
3131
using a third-party distribution, such as

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# [RustPython](https://rustpython.github.io/)
44

5-
A Python-3 (CPython >= 3.10.0) Interpreter written in Rust :snake: :scream:
5+
A Python-3 (CPython >= 3.11.0) Interpreter written in Rust :snake: :scream:
66
:metal:.
77

88
[![Build Status](https://github.com/RustPython/RustPython/workflows/CI/badge.svg)](https://github.com/RustPython/RustPython/actions?query=workflow%3ACI)

0 commit comments

Comments
 (0)