Skip to content
This repository was archived by the owner on Sep 22, 2023. It is now read-only.

Commit e13bea1

Browse files
committed
ci: Fix CI for Python 3.7
1 parent 62466b6 commit e13bea1

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,6 @@ jobs:
5050
- python: "3.8"
5151
os: linux
5252
fast_finish: true
53-
# exclude the duplicate default test stage
54-
exclude:
55-
- python: "3.7"
5653

5754
notifications:
5855
webhooks:

src/ai/backend/client/session.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
Any,
99
Awaitable,
1010
Coroutine,
11-
Literal,
1211
Tuple,
1312
Union,
1413
)
14+
from typing_extensions import Literal # for Python 3.7
1515
import queue
1616
import warnings
1717

0 commit comments

Comments
 (0)