Skip to content

Commit 4faf341

Browse files
committed
Fix version of Python reproject when running tests
1 parent 811402c commit 4faf341

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
release:
99

1010
env:
11-
PYTHON: ""
11+
# `reproject=0.5` is not compatible with Python >= 3.8
12+
PYTHON: "python3.7"
1213

1314
jobs:
1415
test:

test/runtests.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ using Conda, PyCall
44
using FITSIO, WCS
55
using SHA: sha256
66

7-
ENV["PYTHON"]=""
87
Conda.add_channel("astropy")
9-
Conda.add("reproject")
8+
Conda.add("reproject=0.5")
109
rp = pyimport("reproject")
1110
astropy = pyimport("astropy")
1211

0 commit comments

Comments
 (0)