Skip to content

Commit

Permalink
Set minimal Python to 3.10 (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts authored Jan 20, 2023
2 parents c7952a6 + 19f57f4 commit e85c247
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-22.04, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions docs/development/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Tested on:

## Requirements

- Python 3.8+ installed with the Windows MSI installer (version from the Windows store is not working)
- Python 3.10+ installed with the Windows MSI installer (version from the Windows store is not working)

## Enable remote scripts (for virtual environment)

Expand All @@ -21,7 +21,7 @@ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

```powershell
# create a virtual env
py -3.8 -m venv .venv
py -3.10 -m venv .venv
# enable virtual env
.\.venv\Scripts\activate
Expand Down

0 comments on commit e85c247

Please sign in to comment.