Skip to content

Commit

Permalink
Support Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christdej committed Nov 22, 2022
1 parent 217aab3 commit 5a59eea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
"pre-commit",
]
},
python_requires=">=3.9",
python_requires=">=3.8",
tests_require=["pytest"],
)
2 changes: 1 addition & 1 deletion src/isar_robot/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from logging import Logger
from pathlib import Path
from queue import Queue
from random import randrange
from threading import Thread
from typing import List, Sequence

Expand All @@ -26,7 +27,6 @@
TelemetryPosePayload,
)
from robot_interface.utilities.json_service import EnhancedJSONEncoder
from random import randrange

STEP_DURATION_IN_SECONDS = 5

Expand Down

0 comments on commit 5a59eea

Please sign in to comment.