Skip to content

Commit

Permalink
test over python v.3.10 -> 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
inyutin committed Feb 15, 2024
1 parent ba21698 commit 05fea64
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,21 @@ on:

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ]

steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@master
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Display Python version
run: python --version

- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements_ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ pytest==7.1.2
pytest-aiohttp==1.0.4
pytest-cov==3.0.0
mypy==0.961
isort==5.10.1
isort==5.13.2
pre-commit==2.20.0

0 comments on commit 05fea64

Please sign in to comment.