Skip to content

Commit f228167

Browse files
fix: versions
1 parent 5fa6287 commit f228167

File tree

3 files changed

+25
-15
lines changed

3 files changed

+25
-15
lines changed

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ version = "0.1.3"
88
description = "Python API for AVIS Engine Simulator - A robust simulation platform for autonomous vehicle development"
99
readme = "README.md"
1010
requires-python = ">=3.8"
11+
dependencies = [
12+
"numpy>=1.21.0",
13+
"opencv-contrib-python>=4.8.0",
14+
"opencv-python>=4.8.0",
15+
"Pillow>=9.0.0",
16+
"PySocks>=1.7.1",
17+
"PyYAML>=6.0.0",
18+
"regex>=2023.0.0",
19+
"requests>=2.31.0"
20+
]
1121
license = {text = "MIT"}
1222
keywords = ["autonomous", "vehicle", "simulator", "engine", "avis"]
1323
authors = [

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Runtime dependencies
2-
numpy==1.18.3
3-
opencv-contrib-python==4.2.0.34
4-
opencv-python==4.2.0.34
5-
Pillow==7.1.2
6-
PySocks==1.7.1
7-
PyYAML==5.3.1
8-
regex==2020.4.4
9-
requests==2.22.0
2+
numpy>=1.21.0
3+
opencv-contrib-python>=4.8.0
4+
opencv-python>=4.8.0
5+
Pillow>=9.0.0
6+
PySocks>=1.7.1
7+
PyYAML>=6.0.0
8+
regex>=2023.0.0
9+
requests>=2.31.0
1010

1111
# Development dependencies
1212
pytest>=6.0

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
],
3131
python_requires=">=3.8",
3232
install_requires=[
33-
"numpy>=1.18.3",
34-
"opencv-contrib-python>=4.2.0.34",
35-
"opencv-python>=4.2.0.34",
36-
"Pillow>=7.1.2",
33+
"numpy>=1.21.0",
34+
"opencv-contrib-python>=4.8.0",
35+
"opencv-python>=4.8.0",
36+
"Pillow>=9.0.0",
3737
"PySocks>=1.7.1",
38-
"PyYAML>=5.3.1",
39-
"regex>=2020.4.4",
40-
"requests>=2.22.0"
38+
"PyYAML>=6.0.0",
39+
"regex>=2023.0.0",
40+
"requests>=2.31.0"
4141
],
4242
)

0 commit comments

Comments
 (0)