Skip to content

Commit eeab40e

Browse files
authored
maint: call docker compose for containers (#216)
* call docker compose for containers * remove griffe pin x2
1 parent 857298d commit eeab40e

File tree

5 files changed

+9
-10
lines changed

5 files changed

+9
-10
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
run: |
2424
python -m pip install --upgrade pip
2525
python -m pip install -e .[docs]
26-
python -m pip install griffe==0.32.3
2726
- name: Set up Quarto
2827
uses: quarto-dev/quarto-actions/setup@v2
2928
- name: build docs

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
echo {{ github.sha }}
6161
- name: run Connect
6262
run: |
63-
docker-compose up --build -d
63+
docker compose up --build -d
6464
pip freeze > requirements.txt
6565
make dev
6666
cat requirements.txt

.github/workflows/weekly.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
4040
- name: run Connect
4141
run: |
42-
docker-compose up --build -d
42+
docker compose up --build -d
4343
make dev
4444
env:
4545
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}
@@ -86,7 +86,7 @@ jobs:
8686
8787
- name: run Connect
8888
run: |
89-
docker-compose up --build -d
89+
docker compose up --build -d
9090
make dev
9191
env:
9292
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}
@@ -133,7 +133,7 @@ jobs:
133133
134134
- name: run Connect
135135
run: |
136-
docker-compose up --build -d
136+
docker compose up --build -d
137137
make dev
138138
env:
139139
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}
@@ -168,7 +168,7 @@ jobs:
168168
169169
- name: run Connect
170170
run: |
171-
docker-compose up --build -d
171+
docker compose up --build -d
172172
make dev
173173
env:
174174
RSC_LICENSE: ${{ secrets.RSC_LICENSE }}

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ develop: clean-pyc
8181
dev: vetiver/tests/rsconnect_api_keys.json
8282

8383
dev-start:
84-
docker-compose up -d
85-
docker-compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
84+
docker compose up -d
85+
docker compose exec -T rsconnect bash < script/setup-rsconnect/add-users.sh
8686
# curl fails with error 52 without a short sleep....
8787
sleep 5
8888
curl -s --retry 10 --retry-connrefused http://localhost:3939
8989

9090
dev-stop:
91-
docker-compose down
91+
docker compose down
9292
rm -f $(RSC_API_KEYS)
9393

9494
typecheck:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ dev =
5858

5959
docs =
6060
quartodoc
61-
griffe==0.32.3
61+
griffe
6262

6363
statsmodels =
6464
statsmodels

0 commit comments

Comments
 (0)