Skip to content

Commit 7e9a694

Browse files
Release version with CAN Transport Interface (python-can) (#243)
- update requirements and dependencies - bump version
1 parent 2f7bd84 commit 7e9a694

File tree

5 files changed

+28
-14
lines changed

5 files changed

+28
-14
lines changed

docs/requirements_for_docs.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sphinx>=4.1.2
2-
sphinx-autoapi>=1.8.4
3-
sphinx-rtd-theme>=0.5.2
4-
tomli>=2.0.0
1+
sphinx==4.*
2+
sphinx-autoapi==1.*
3+
sphinx-rtd-theme==1.3.0
4+
tomli==2.*

pyproject.toml

Lines changed: 20 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ classifiers = [
2020
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
2121
"Topic :: Software Development :: Embedded Systems",
2222
"Topic :: System :: Monitoring",
23-
"Topic :: System :: Networking"
23+
"Topic :: System :: Networking",
2424
]
2525
keywords = [
2626
"uds",
@@ -30,7 +30,7 @@ keywords = [
3030
"obd",
3131
"on-board-diagnostic",
3232
"vehicle-diagnostic",
33-
"automotive"
33+
"automotive",
3434
]
3535
authors = [
3636
{name="Maciej Dąbrowski", email="maciej.dabrowski@software-quality.pl"},
@@ -61,21 +61,32 @@ dynamic = ["version"]
6161

6262
[project.optional-dependencies]
6363
test = [
64+
"mock == 5.*",
6465
"pytest == 7.*",
6566
"pytest-cov",
6667
"pytest-asyncio",
67-
"mock == 5.*"
6868
]
6969
docs = [
7070
"sphinx",
7171
"sphinx-autoapi",
72-
"sphinx-rtd-theme"
72+
"sphinx-rtd-theme",
73+
"tomli",
74+
]
75+
static-code-analysis = [
76+
"prospector == 1.10.3",
77+
"mypy == 1.6.1",
78+
"vulture == 2.10",
79+
"bandit == 1.7.5",
80+
"pyroma == 4.2",
81+
]
82+
dependency-scan = [
83+
"safety == 2.3.5",
7384
]
7485

7586

7687
[build-system]
7788
requires = [
78-
"setuptools>=42",
89+
"setuptools >= 42",
7990
"wheel"
8091
]
8192
build-backend = "setuptools.build_meta"
@@ -96,7 +107,9 @@ docs = [
96107
"source/*.rst",
97108
"source/pages/*.rst",
98109
"source/*.png",
99-
"source/*.drawio"
110+
"source/*.drawio",
111+
"source/*.tgn",
112+
"source/*.md",
100113
]
101114

102115

@@ -114,6 +127,7 @@ markers = [
114127
]
115128
testpaths = [
116129
"tests/software_tests",
130+
"tests/system_tests",
117131
]
118132
filterwarnings = "ignore:::.*uds*"
119133
asyncio_mode = "strict"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
safety>=1.10.3
1+
safety==2.3.5
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1+
mock==5.*
12
pytest==7.*
23
pytest-cov==4.*
3-
pytest-asyncio>=0.17.2
4-
mock==5.*
4+
pytest-asyncio>=0.17.2

uds/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- `K-Line <https://en.wikipedia.org/wiki/K-Line>`_
1818
"""
1919

20-
__version__ = "0.2.0"
20+
__version__ = "0.3.0"
2121
__author__ = "Maciej Dąbrowski"
2222
__maintainer__ = "Maciej Dąbrowski"
2323
__credits__ = ["Maciej Dąbrowski (https://www.linkedin.com/in/maciej-dabrowski-test-engineer/)",

0 commit comments

Comments
 (0)