Skip to content

Commit

Permalink
Just a test for GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Oct 8, 2023
1 parent b3d4aaf commit e5e589a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ def get_compiler_flags():

def compile_cython_extensions():
"""Compile Cython extensions"""
import Cython
raise RuntimeError(f"Cython version: {Cython.__version__}")
for fname in os.listdir(SRCPATH):
if osp.splitext(fname)[1] == ".pyx":
Main.compile(osp.join(SRCPATH, fname), language_level=2)
Expand Down

0 comments on commit e5e589a

Please sign in to comment.