Skip to content

Commit

Permalink
Do not require Healpy on Windows
Browse files Browse the repository at this point in the history
Healpy does not have builds for windows; see
healpy/healpy#25.

`npm run dev` will now work again on Windows, although the ACROSS
API endpoints will bne nonfunctional on Windows.

Addresses #2038.
  • Loading branch information
lpsinger committed Mar 12, 2024
1 parent f2ee090 commit cc8709c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ astropy_healpix
cachetools
email-validator
fastapi
healpy==0.1.dev1+g500357b
healpy==0.1.dev1+g500357b; platform_system!="Windows" # Healpy does not have any Windows builds; see https://github.com/healpy/healpy/issues/25
mangum
python-multipart # Required for file uploads in FastAPI; see https://fastapi.tiangolo.com/tutorial/request-files/
requests
Expand Down
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ fastapi==0.109.2
# via -r requirements.in
h11==0.14.0
# via httpcore
healpy==0.1.dev1+g500357b
healpy==0.1.dev1+g500357b ; platform_system != "Windows"
# via -r requirements.in
httpcore==1.0.2
# via httpx
Expand Down

0 comments on commit cc8709c

Please sign in to comment.