Skip to content

Commit ccc82c2

Browse files
committed
Changed Makefile command 'update-lockfile' to upgrade dependencies. Also upgraded dependencies and resolved issues: psycopg now raises an InternalError rather than an OperationalError for "idle in transaction session timeout".
1 parent b0e8348 commit ccc82c2

File tree

4 files changed

+432
-359
lines changed

4 files changed

+432
-359
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ install-packages:
2323

2424
.PHONY: update-lockfile
2525
update-lockfile:
26-
$(POETRY) lock --no-update
26+
$(POETRY) lock
27+
# $(POETRY) lock --no-update
2728

2829
.PHONY: update-packages
2930
update-packages: update-lockfile install-packages

0 commit comments

Comments
 (0)