Skip to content

Commit 7f9e52f

Browse files
fix: errors on ci/cd
1 parent 41f2da2 commit 7f9e52f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/python-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
14-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
14+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1515

1616
steps:
1717
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "avisengine"
77
version = "0.1.3"
88
description = "Python API for AVIS Engine Simulator - A robust simulation platform for autonomous vehicle development"
99
readme = "README.md"
10-
requires-python = ">=3.6"
10+
requires-python = ">=3.8"
1111
license = {text = "MIT"}
1212
keywords = ["autonomous", "vehicle", "simulator", "engine", "avis"]
1313
authors = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"Topic :: Scientific/Engineering :: Artificial Intelligence",
2929
"Topic :: Software Development :: Libraries :: Python Modules",
3030
],
31-
python_requires=">=3.6",
31+
python_requires=">=3.8",
3232
install_requires=[
3333
"numpy>=1.18.3",
3434
"opencv-contrib-python>=4.2.0.34",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, py310
2+
envlist = py38, py39, py310, py311, py312
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)