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

Update generic_parser from_json return after ingestion #816

Merged
merged 2 commits into from
Jun 11, 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 .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.0.3
current_version = 7.0.4
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>[A-z0-9-]+)
Expand Down
2 changes: 1 addition & 1 deletion api/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from db.python.utils import get_logger

# This tag is automatically updated by bump2version
_VERSION = '7.0.3'
_VERSION = '7.0.4'


logger = get_logger()
Expand Down
2 changes: 1 addition & 1 deletion deploy/python/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.0.3
7.0.4
2 changes: 2 additions & 0 deletions metamist/parser/generic_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,8 @@ async def from_json(self, rows, confirm=False, dry_run=False):
else:
self.prepare_detail(samples)

return result

def _get_dict_reader(self, file_pointer, delimiter: str):
"""
Return a DictReader from file_pointer
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
setup(
name=PKG,
# This tag is automatically updated by bump2version
version='7.0.3',
version='7.0.4',
description='Python API for interacting with the Sample API system',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamist",
"version": "7.0.3",
"version": "7.0.4",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.3",
Expand Down
Loading