Skip to content

Commit

Permalink
Merge pull request #21 from aldbr/freeze-typer
Browse files Browse the repository at this point in the history
fix: freeze typer from < 0.12.4 until issue is solved
  • Loading branch information
fstagni authored Aug 26, 2024
2 parents 1a8980a + 3e6532d commit d7cf98e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions client-base/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies:
- python-dotenv
- python-multipart
- rich
# Exclude version 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
- typer!=0.12.4
# Exclude version >= 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
- typer<0.12.4
4 changes: 2 additions & 2 deletions server-base/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ dependencies:
- requests
- rich
- sqlalchemy
# Exclude version 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
- typer!=0.12.4
# Exclude version >= 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
- typer<0.12.4
- uvicorn
- aiobotocore >=2.12
- botocore
Expand Down
5 changes: 3 additions & 2 deletions services-base/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ dependencies:
- opentelemetry-instrumentation-fastapi
- opentelemetry-instrumentation-logging
- opentelemetry-sdk
# Exclude version 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
- typer!=0.12.4
# Exclude version >= 0.12.4 of typer: https://github.com/DIRACGrid/diracx/issues/280
# typer should not be part of services-base, once typer is unfrozen, it should be removed from here
- typer<0.12.4

0 comments on commit d7cf98e

Please sign in to comment.