Skip to content

Commit

Permalink
Fix #219: Python3.8 compatiblity (#221)
Browse files Browse the repository at this point in the history
* Fix #219

* Install generated wheel on Python3.8 and run `gowin_pack`
  • Loading branch information
DavidVentura authored Jan 4, 2024
1 parent 140c7b3 commit 153fc97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/chipdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,9 @@ jobs:
pip install setuptools wheel twine
python setup.py --version
python setup.py sdist bdist_wheel
# Validate that the resulting wheel can be executed
pip install dist/Apycula-$(python setup.py --version)-py3-none-any.whl
gowin_pack --help
- name: Archive artifact
uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion apycula/dat19.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from __future__ import annotations
import sys
import os
from pathlib import Path
from dataclasses import dataclass
from typing import Any


@dataclass
Expand Down

0 comments on commit 153fc97

Please sign in to comment.