Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not require Healpy on Windows #2080

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cachetools
dynamodb-autoincrement>=0.2.0
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
httpx
mangum
python-multipart # Required for file uploads in FastAPI; see https://fastapi.tiangolo.com/tutorial/request-files/
Expand Down
6 changes: 2 additions & 4 deletions python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ aioboto3==12.3.0
# -r requirements.in
# dynamodb-autoincrement
aiobotocore[boto3]==2.11.2
# via
# aioboto3
# aiobotocore
# via aioboto3
aiohttp==3.9.3
# via aiobotocore
aioitertools==0.11.0
Expand Down Expand Up @@ -80,7 +78,7 @@ frozenlist==1.4.1
# aiosignal
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
Loading