Skip to content

Commit 711d096

Browse files
wrong spot
1 parent b9facf7 commit 711d096

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ jobs:
1616
matrix:
1717
# macos-13 is an intel runner, macos-14 is apple silicon
1818
os: [macos-13, macos-14, ubuntu-latest, windows-latest,]
19-
env:
20-
CIBW_SKIP: "pp*"
21-
2219
steps:
2320
- uses: actions/checkout@v4
2421

@@ -34,7 +31,8 @@ jobs:
3431

3532
- name: Build wheels
3633
run: python -m cibuildwheel --output-dir wheelhouse
37-
# env:
34+
env:
35+
CIBW_SKIP: "pp*"
3836
# CIBW_TEST_REQUIRES: pytest dropbox
3937
# CIBW_TEST_COMMAND: "pytest {project}/tests"
4038

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ siffpy/core/_version.py
1919
# Byte-compiled / optimized / DLL files
2020
__pycache__/
2121
*.py[cod]
22+
.pytest_cache/
2223

2324
# C extensions
2425
*.so

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ and .siffs (SImple Flim Format / ScanImage-FLIM format) generated by my
99
custom modified ScanImage (currently reachable as a bunch of distributed repos but the core
1010
code being in `PicoQuantScanImageTools`).
1111

12+
With the current `corrosiff` backend, this and all future versions (until PyO3 changes)
13+
will not be compatible with `PyPy` interpreters. This is only because `PyPy` is not
14+
supported by the `PyO3` tools, and manually bridging the `Rust` library to `Python`
15+
would be a nightmare.
16+
1217
### TODOS:
1318
- In-place operations should be performed correctly in `FlimTrace`, e.g.
1419
`my_trace -= 2` or `my_trace -= another_trace`. Currently `NotImplemented` which

0 commit comments

Comments
 (0)