Skip to content

Commit d171c24

Browse files
committed
Pinning to pull request version for tests.
1 parent 01c1563 commit d171c24

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

dockerfiles/Dockerfile.dev.es

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM python:3.10-slim
44
# update apt pkgs, and install build-essential for ciso8601
55
RUN apt-get update && \
66
apt-get -y upgrade && \
7-
apt-get install -y build-essential git && \
7+
apt-get -y install build-essential git && \
88
apt-get clean && \
99
rm -rf /var/lib/apt/lists/*
1010

dockerfiles/Dockerfile.dev.os

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ FROM python:3.10-slim
44
# update apt pkgs, and install build-essential for ciso8601
55
RUN apt-get update && \
66
apt-get -y upgrade && \
7-
apt-get install -y build-essential && \
7+
apt-get -y install build-essential && \
88
apt-get clean && \
99
rm -rf /var/lib/apt/lists/*
1010

11+
RUN apt-get -y install git
1112
# update certs used by Requests
1213
ENV CURL_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
1314

stac_fastapi/core/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"attrs>=23.2.0",
1111
"pydantic[dotenv]",
1212
"stac_pydantic>=3",
13-
"stac-fastapi.types==3.0.0a4",
14-
"stac-fastapi.api==3.0.0a4",
15-
"stac-fastapi.extensions==3.0.0a4",
13+
"stac-fastapi.types@git+https://github.com/stac-utils/stac-fastapi.git@refs/pull/744/head#subdirectory=stac_fastapi/types",
14+
"stac-fastapi.api@git+https://github.com/stac-utils/stac-fastapi.git@refs/pull/744/head#subdirectory=stac_fastapi/api",
15+
"stac-fastapi.extensions@git+https://github.com/stac-utils/stac-fastapi.git@refs/pull/744/head#subdirectory=stac_fastapi/extensions",
1616
"orjson",
1717
"overrides",
1818
"geojson-pydantic",

0 commit comments

Comments
 (0)