Skip to content

Commit 9398c01

Browse files
committed
Bumped dependencies.
1 parent 52fe8ee commit 9398c01

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

dist/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
wheel>=0.38.1
2-
twine
1+
wheel >= 0.40.0
2+
twine >= 4.0.2

doc/Dependency.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ the mandatory dependencies too.
6363
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6464
| `Coverage <https://github.com/nedbat/coveragepy>`__ | ≥7.0 | `Apache License, 2.0 <https://github.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
6565
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
66-
| `mypy <https://github.com/python/mypy>`__ |0.990 | `MIT <https://github.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
66+
| `mypy <https://github.com/python/mypy>`__ |1.2 | `MIT <https://github.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
6767
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
6868
| `lxml <https://github.com/lxml/lxml>`__ | ≥4.9 | `BSD 3-Clause <https://github.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
6969
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
@@ -131,7 +131,7 @@ install the mandatory dependencies too.
131131
+============================================================================+==============+==========================================================================================================+======================================================================================================================================================+
132132
| `pyTooling <https://github.com/pyTooling/pyTooling>`__ | ≥5.0.0 | `Apache License, 2.0 <https://github.com/pyTooling/pyTooling/blob/main/LICENSE.md>`__ | *None* |
133133
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
134-
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.38.1 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
134+
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.40.0 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
135135
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
136136

137137

@@ -160,7 +160,7 @@ install the mandatory dependencies too.
160160
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
161161
| **Package** | **Version** | **License** | **Dependencies** |
162162
+==========================================================+==============+===========================================================================================+======================+
163-
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.38.1 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
163+
| `wheel <https://github.com/pypa/wheel>`__ | ≥0.40.0 | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
164164
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+
165-
| `Twine <https://github.com/pypa/twine/>`__ | any | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
165+
| `Twine <https://github.com/pypa/twine/>`__ | ≥4.0.2 | `Apache License, 2.0 <https://github.com/pypa/twine/blob/main/LICENSE>`__ | *Not yet evaluated.* |
166166
+----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+

pySVModel/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2021-2023 Patrick Lehmann - Boetzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #
@@ -31,7 +31,7 @@
3131
"""
3232
An abstract SystemVerilog language model.
3333
34-
:copyright: Copyright 2021-2022 Patrick Lehmann - Bötzingen, Germany
34+
:copyright: Copyright 2021-2023 Patrick Lehmann - Bötzingen, Germany
3535
:license: Apache License, Version 2.0
3636
"""
3737
from enum import unique, Enum
@@ -42,7 +42,7 @@
4242

4343
__author__ = "Patrick Lehmann"
4444
__email__ = "Paebbels@gmail.com"
45-
__copyright__ = "2021-2022, Patrick Lehmann"
45+
__copyright__ = "2021-2023, Patrick Lehmann"
4646
__license__ = "Apache License, Version 2.0"
4747
__version__ = "0.3.6"
4848

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build-system]
22
requires = [
33
"pyTooling >= 5.0.0",
4-
"setuptools >= 60.9.3",
5-
"wheel >= 0.38.1"
4+
"setuptools >= 68.0.0",
5+
"wheel >= 0.40.0"
66
]
77
build-backend = "setuptools.build_meta"
88

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2021-2023 Patrick Lehmann - Boetzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ pytest>=7.2.0
88
pytest-cov>=4.0.0
99

1010
# Static Type Checking
11-
mypy>=0.990
11+
mypy >= 1.2
1212
lxml>=4.9

tests/unit/Instantiate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2021-2023 Patrick Lehmann - Boetzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

tests/unit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2021-2023 Patrick Lehmann - Boetzingen, Germany #
1515
# #
1616
# Licensed under the Apache License, Version 2.0 (the "License"); #
1717
# you may not use this file except in compliance with the License. #

0 commit comments

Comments
 (0)