Skip to content

Commit

Permalink
Bumped dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jul 13, 2023
1 parent 275a778 commit 9d9ede9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
6 changes: 3 additions & 3 deletions doc/Dependency.rst
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ install the mandatory dependencies too.
+============================================================================+==============+==========================================================================================================+======================================================================================================================================================+
| `pyTooling <https://github.com/pyTooling/pyTooling>`__ | ≥2.11.0 | `Apache License, 2.0 <https://github.com/pyTooling/pyTooling/blob/main/LICENSE.md>`__ | *None* |
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.38.1 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.40.0 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+


Expand Down Expand Up @@ -188,7 +188,7 @@ install the mandatory dependencies too.
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
| **Package** | **Version** | **License** | **Dependencies** |
+==========================================================+==============+===========================================================================================+======================+
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.38.1 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.40.0 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
| `Twine <https://github.com/pypa/twine/>`__ | any | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
| `Twine <https://github.com/pypa/twine/>`__ | ≥4.0.2 | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
4 changes: 2 additions & 2 deletions pyVHDLParser/Filters/Comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def StripAndFuse(generator: Generator[Block, Any, None]) -> Generator[Block, Any
if isinstance(block, (IndentationBlock, CommentBlock, LinebreakBlock)):
continue
else:
if block.MultiPart == True:
if block.MultiPart:
while True:
nextBlock = next(iterator)
if isinstance(nextBlock, (WhitespaceBlock, CommentBlock)):
Expand All @@ -55,7 +55,7 @@ def StripAndFuse(generator: Generator[Block, Any, None]) -> Generator[Block, Any

nextBlock.StartToken.PreviousToken = block.EndToken
block.EndToken = nextBlock.EndToken
if nextBlock.MultiPart == False:
if not nextBlock.MultiPart:
break

block.PreviousBlock = lastBlock
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
requires = [
"pyTooling >= 5.0.0",
"setuptools >= 62.3.3",
"wheel >= 0.38.1"
"setuptools >= 68.0.0",
"wheel >= 0.40.0"
]
build-backend = "setuptools.build_meta"

Expand Down
3 changes: 2 additions & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ Coverage>=7.2

# Test Runner
pytest>=7.3.0
pytest-cov>=4.0.0
typing_extensions>=4.6.3
pytest-cov>=4.1.0

# Static Type Checking
mypy>=1.2.0
Expand Down

0 comments on commit 9d9ede9

Please sign in to comment.