Skip to content
Merged

WIP #18

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: python
image: python:3.13

steps:
- name: Check out git repo
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

container:
image: python
image: python:3.13

steps:
- name: Check out git repo
Expand All @@ -25,9 +25,7 @@ jobs:
run: git config --global --add safe.directory '*'

- name: Install dependencies
env:
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
run: pip3 install poetry flake8 black && poetry config virtualenvs.create ${USE_VENV} && poetry install
run: pip3 install poetry flake8 black && poetry config virtualenvs.create ${USE_VENV} && poetry install && pip install black
#
# - name: flake8
# run: flake8 --max-line-length=120 .
Expand Down
Loading