Skip to content

Commit 3084034

Browse files
author
Alexander Mancevice
committed
pandas ~> 1.0.5
1 parent 1566e96 commit 3084034

File tree

3 files changed

+202
-207
lines changed

3 files changed

+202
-207
lines changed

Makefile

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,21 @@
1-
REPO := amancevice/pandas
1+
REPO := amancevice/pandas
22
STAGES := lock alpine slim jupyter latest
33
PANDAS_VERSION := $(shell grep pandas Pipfile | grep -o '[0-9.]\+')
44

55
.PHONY: default clean clobber push
66

7-
default: Pipfile.lock $(STAGES)
7+
default: $(STAGES)
88

99
.docker:
1010
mkdir -p $@
1111

1212
.docker/lock: Pipfile
13-
.docker/alpine: .docker/lock
13+
.docker/alpine: .docker/lock Pipfile.lock
1414
.docker/slim: .docker/alpine
1515
.docker/jupyter: .docker/slim
1616
.docker/latest: .docker/jupyter
1717
.docker/%: | .docker
18-
docker build \
19-
--iidfile $@ \
20-
--tag $(REPO):$* \
21-
--target $* \
22-
.
18+
docker build --iidfile $@ --tag $(REPO):$* --target $* .
2319

2420
Pipfile.lock: .docker/lock
2521
docker run --rm --entrypoint cat $$(cat $<) $@ > $@

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jupyter = "*"
88
matplotlib = "*"
99

1010
[packages]
11-
pandas = "==1.0.3"
11+
pandas = "==1.0.5"
1212

1313
[requires]
1414
python_version = "3.7"

0 commit comments

Comments
 (0)