Skip to content

Commit

Permalink
Enable tests with Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dalcinl committed Oct 16, 2023
1 parent b4645dd commit ee3b9ea
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .cibw/setup-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@
matrix = []
for entry in builds:
osname, arch, mpiabi, py, (x, y) = entry
if (x, y) >= (3, 12): # TODO: update for cp312
continue
if (x, y) >= (3, 10) and py == "pp": # TODO: update for pp310
continue
if osname == "Windows":
Expand Down Expand Up @@ -130,15 +128,13 @@
matrix = []
for entry in builds:
osname, arch, mpiabi, py, (x, y) = entry
if (x, y) >= (3, 12): # TODO: update for cp312
continue
if (x, y) >= (3, 10) and py == "pp": # TODO: update for pp310
continue
std, _, mpi = mpiabi.partition("-")
mpispeclist = [mpi]
if osname == "Linux" and mpi == "mpich":
mpispeclist.append("impi")
pypy = "pypy-" if py == "pp" else ""
pypy = "pypy" if py == "pp" else ""
pyspec = f"{pypy}{x}.{y}"
for runner in runners[osname]:
if runner == "ubuntu-22.04":
Expand Down

0 comments on commit ee3b9ea

Please sign in to comment.