Skip to content

Commit

Permalink
Update build action and python version (#625)
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Nov 8, 2023
1 parent 19ef048 commit ba0e15c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Expand Up @@ -14,16 +14,16 @@ jobs:
tests:

env:
TOXENV: py39
TOXENV: py311

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand All @@ -39,11 +39,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand All @@ -58,11 +58,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools tox
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,7 +1,7 @@
[tox]
skipsdist=True
envlist =
py35,py36,py37,p38,lint
py37,p38,py39,py310,p311,lint

[testenv]
deps=
Expand Down

0 comments on commit ba0e15c

Please sign in to comment.