Skip to content

Commit

Permalink
Upgrade to python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Aug 17, 2023
1 parent d2d4c9e commit 9069eab
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,23 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.11'
- name: Check formatting
run: make format
lint:
name: Check for erroneous constructs
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.11'
- name: Check for erroneous constructs
run: make lint
links:
Expand All @@ -45,10 +45,10 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout the Git repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v3
with:
python-version: '3.9'
python-version: '3.11'
- name: Run tests
run: make test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pip install toltecmk
There are a few system requirements to use this tool:

* Linux-based operating system
* Python ⩾ 3.9
* Python ⩾ 3.11
* Docker

### Basic Usage
Expand Down

0 comments on commit 9069eab

Please sign in to comment.