Skip to content

Commit

Permalink
switch to python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
da5nsy committed Jan 29, 2024
1 parent 148466a commit 357e18c
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 283 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python_version: ["3.10"]
python_version: ["3.8"]
fail-fast: false # Don't cancel all jobs if one fails

runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"

- name: Install dependencies
run: make deps
Expand All @@ -82,7 +82,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"

- name: Install dependencies
run: make deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-talk-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"

- name: Install ghapi to interact with the GitHub REST API
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/external_link_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"

- name: Install dependencies
run: make deps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lorem-ipsums.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
# Checkout the repository. Relies on another GH-Action.
- uses: actions/checkout@v3
# Set up the Python version. Relies on another GH-Action.
- name: Setup Python 3.10
- name: Setup Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"
# Install Python dependencies
- name: Install dependencies
working-directory: ./tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/no-bad-latin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
# Checkout the repository. Relies on another GH-Action.
- uses: actions/checkout@v3
# Set up the Python version. Relies on another GH-Action.
- name: Setup Python 3.10
- name: Setup Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"
# Install Python dependencies
- name: Install dependencies
working-directory: ./tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup Python 3.10
- name: Setup Python 3.8
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.8"

- name: Install yamllint via pip
run: |
Expand Down
2 changes: 1 addition & 1 deletion book/website/community-handbook/local-build.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You will need to locate your "terminal" or "prompt" application on your machine.
3. Create a new environment and install a modern version of Python into it:

```console
conda create --name the-turing-way python=3.10
conda create --name the-turing-way python=3.8
```

4. Activate the environment with:
Expand Down

0 comments on commit 357e18c

Please sign in to comment.