Skip to content

Commit

Permalink
ci: enable python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
prusnak committed Jan 4, 2024
1 parent 467e280 commit a852a9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,15 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
python -m pip install .
- name: Run test
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade black flake8 wheel mypy
python -m pip install --upgrade black flake8 wheel mypy setuptools
- name: Check style
run: make style_check
- name: Check dist
Expand Down

0 comments on commit a852a9c

Please sign in to comment.