Skip to content

Commit

Permalink
Bump to TRAPI 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
maximusunc committed Apr 25, 2024
1 parent 8e6f1e1 commit bdc8b37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

openapi_args = dict(
title="Workflow runner",
version="1.6.8",
version="1.7.0",
terms_of_service="",
translator_component="ARA",
translator_teams=["Standards Reference Implementation Team"],
Expand All @@ -38,7 +38,7 @@
OPENAPI_SERVER_URL = os.getenv("OPENAPI_SERVER_URL")
OPENAPI_SERVER_MATURITY = os.getenv("OPENAPI_SERVER_MATURITY", "development")
OPENAPI_SERVER_LOCATION = os.getenv("OPENAPI_SERVER_LOCATION", "RENCI")
TRAPI_VERSION = os.getenv("TRAPI_VERSION", "1.4.0")
TRAPI_VERSION = os.getenv("TRAPI_VERSION", "1.5.0")

if OPENAPI_SERVER_URL:
openapi_args["servers"] = [
Expand Down
4 changes: 2 additions & 2 deletions app/smartapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,9 @@ def main():
"-t",
"--trapi_version",
type=str,
choices=["1.2.0", "1.3.0", "1.4.0"],
choices=["1.2.0", "1.3.0", "1.4.0", "1.5.0"],
nargs=1,
help="1.2.0, 1.3.0, 1.4.0",
help="1.2.0, 1.3.0, 1.4.0, 1.5.0",
)
args = argparser.parse_args()

Expand Down
2 changes: 1 addition & 1 deletion requirements-lock.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ httpx==0.24.1
idna==3.3
packaging==23.2
pydantic==1.9.0
reasoner-pydantic==4.1.5
reasoner-pydantic==5.0.2
rfc3986==1.5.0
sniffio==1.2.0
starlette==0.17.1
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
fastapi==0.75.0
gunicorn==21.2.0
httpx==0.24.1
reasoner-pydantic==4.1.5
reasoner-pydantic==5.0.2
uvicorn==0.22.0

0 comments on commit bdc8b37

Please sign in to comment.