Skip to content

Commit

Permalink
📲 Update dependencies (#13)
Browse files Browse the repository at this point in the history
Updates dependencies to latest
  • Loading branch information
mrharpo authored Feb 23, 2024
1 parent 17462db commit 3eb265f
Show file tree
Hide file tree
Showing 5 changed files with 380 additions and 346 deletions.
4 changes: 3 additions & 1 deletion fastclam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
[localhost:8000/docs](http://localhost:8000/docs)
"""

from ._version import __version__
from .app import app

__all__ = ['__version__']
__all__ = ['__version__', 'app']
2 changes: 1 addition & 1 deletion fastclam/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.2.0'
__version__ = '0.3.0'
2 changes: 1 addition & 1 deletion fastclam/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from xml.etree.ElementTree import ParseError

import requests
from clams.source import generate_source_mmif_from_file
from clams.mmif_utils.source import generate_source_mmif_from_file
from fastapi import FastAPI, HTTPException
from fastapi.responses import PlainTextResponse
from starlette.exceptions import HTTPException as StarletteHTTPException
Expand Down
Loading

0 comments on commit 3eb265f

Please sign in to comment.