Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Bump the pipenv group in /services/datalad with 8 updates #3020

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion services/datalad/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ falcon-elastic-apm = "*"
boto3 = "*"
elasticsearch = "*"
pygit2 = "*"
pygithub = "==2.2.0"
pygithub = "==2.3.0"
greenlet = "*"
charset-normalizer = "*"
198 changes: 100 additions & 98 deletions services/datalad/Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions services/datalad/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import sys
import string
import os
import json
Expand All @@ -16,6 +17,15 @@
import datalad_service.tasks.publish


# boto has a hopelessly outdated vendored version of six that breaks
# pytest imports. Until datalad removes boto, purge the six importer.
boto_importers = [
importer for importer in sys.meta_path
if importer.__module__ == 'boto.vendored.six'
]
for importer in boto_importers:
sys.meta_path.remove(importer)

# Test dataset to create
DATASET_ID = 'ds000001'
SNAPSHOT_ID = '000001'
Expand Down
Loading