Skip to content

Commit

Permalink
remove dataclasses from install requirement
Browse files Browse the repository at this point in the history
dataclasses is built-in into python 3.7, and importlib-resources is
built-in into python 3.1. Since python_requires is specified with
'>=3.8', we can assume that the dataclass module is exists.

Signed-off-by: Avimitin <dev@avimit.in>
  • Loading branch information
Avimitin authored and LucasKl committed Nov 9, 2023
1 parent 06498c3 commit 16116fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
keywords=['verilog', 'VHDL', 'vcd', 'fst', 'development', 'hardware', 'rtl', 'simulation', 'verification', 'FPGA'],
packages=find_packages(),
python_requires='>=3.8, <4',
install_requires=['lark-parser', 'dataclasses', 'pylibfst','importlib-resources'],
install_requires=['lark-parser', 'pylibfst'],
extras_require={
'dev': [],
'test': ['ruff', 'coverage'],
Expand Down

0 comments on commit 16116fe

Please sign in to comment.