Skip to content

Commit

Permalink
pyproject.toml: add explicit dependency on packaging (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
peremen committed Jun 2, 2024
1 parent 6f397e4 commit 2a76b80
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Python 3.7 is a minimum requirement, and the following external modules are requ
* [pyUSB](https://pypi.org/project/pyusb/)
* [pySerial](https://pypi.org/project/pyserial/)
* [bitstring](https://bitstring.readthedocs.io/en/stable/)
* [packaging](https://pypi.org/project/packaging/)
* [libscrc](https://github.com/hex-in/libscrc) - optional

To properly decode GSMTAP packets generated by SCAT, Wireshark 2.6.0 or above is required.
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ requires-python = ">=3.7"
dependencies = [
"pyusb>=1.0.2",
"pyserial>=3.3",
"bitstring>=3.1.7"
"bitstring>=3.1.7",
"packaging>=19.0"
]
[project.optional-dependencies]
fastcrc = [
Expand Down

0 comments on commit 2a76b80

Please sign in to comment.