Skip to content

Commit e5e589a

Browse files
committed
Just a test for GH actions
1 parent b3d4aaf commit e5e589a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
python-version: ["3.8", "3.9", "3.10", "3.11"]
24+
python-version: ["3.10"]
2525

2626
steps:
2727
- uses: actions/checkout@v3

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ def get_compiler_flags():
4343

4444
def compile_cython_extensions():
4545
"""Compile Cython extensions"""
46+
import Cython
47+
raise RuntimeError(f"Cython version: {Cython.__version__}")
4648
for fname in os.listdir(SRCPATH):
4749
if osp.splitext(fname)[1] == ".pyx":
4850
Main.compile(osp.join(SRCPATH, fname), language_level=2)

0 commit comments

Comments
 (0)