Skip to content

Commit 4b95848

Browse files
committed
Explicitly update TDA for make update
Why these changes are being introduced: The TDA library is a Github dependency in the Pipefile, but the normal `pipenv update --dev` does not pickup versions bumps in the TDA library. However, an explicit `pipenv update <TDA_URL>` will. How this addresses that need: * Adds an explicit TDA update in the `make update` command Side effects of this change: * TDA is updated to v2.0 (current) Relevant ticket(s): * https://mitlibraries.atlassian.net/browse/TIMX-496
1 parent 719df76 commit 4b95848

File tree

3 files changed

+544
-548
lines changed

3 files changed

+544
-548
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ install: # Install Python dependencies
2020

2121
update: install # Update Python dependencies
2222
pipenv clean
23+
pipenv update git+https://github.com/MITLibraries/timdex-dataset-api.git
2324
pipenv update --dev
2425

2526
######################

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ opensearch-py = "*"
1111
rich-click = "*"
1212
sentry-sdk = "*"
1313
smart-open = {extras = ["s3"], version = "*"}
14-
timdex-dataset-api = { git = "git+https://github.com/MITLibraries/timdex-dataset-api.git"}
14+
timdex-dataset-api = {git = "https://github.com/MITLibraries/timdex-dataset-api.git"}
1515

1616
[dev-packages]
1717
black = "*"

0 commit comments

Comments
 (0)