trying to go with CPython 3.11

This commit is contained in:
Jeong YunWon
2023-02-17 23:33:04 +09:00
parent a0c34dab54
commit e79b1398b0
4 changed files with 7 additions and 7 deletions

View File

@@ -250,7 +250,7 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- name: Set up the Windows environment
shell: bash
run: |
@@ -266,7 +266,7 @@ jobs:
run: cargo build --release --verbose --features=threading ${{ env.CARGO_ARGS }}
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- name: run snippets
run: python -m pip install -r requirements.txt && pytest -v
working-directory: ./extra_tests
@@ -349,7 +349,7 @@ jobs:
run: cargo clippy --manifest-path=wasm/lib/Cargo.toml -- -Dwarnings
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- name: install flake8
run: python -m pip install flake8
- name: run lint
@@ -411,7 +411,7 @@ jobs:
tar -xzf geckodriver-v0.30.0-linux64.tar.gz -C geckodriver
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- run: python -m pip install -r requirements.txt
working-directory: ./wasm/tests
- uses: actions/setup-node@v1

View File

@@ -29,7 +29,7 @@ jobs:
RUSTC_WRAPPER: './scripts/codecoverage-rustc-wrapper.sh'
- uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: "3.11"
- run: python -m pip install pytest
working-directory: ./extra_tests
- name: run snippets

View File

@@ -25,7 +25,7 @@ RustPython requires the following:
stable version: `rustup update stable`
- If you do not have Rust installed, use [rustup](https://rustup.rs/) to
do so.
- CPython version 3.10 or higher
- CPython version 3.11 or higher
- CPython can be installed by your operating system's package manager,
from the [Python website](https://www.python.org/downloads/), or
using a third-party distribution, such as

View File

@@ -2,7 +2,7 @@
# [RustPython](https://rustpython.github.io/)
A Python-3 (CPython >= 3.10.0) Interpreter written in Rust :snake: :scream:
A Python-3 (CPython >= 3.11.0) Interpreter written in Rust :snake: :scream:
:metal:.
[![Build Status](https://github.com/RustPython/RustPython/workflows/CI/badge.svg)](https://github.com/RustPython/RustPython/actions?query=workflow%3ACI)