diff --git a/dist/requirements.txt b/dist/requirements.txt index e4718c94..48316fa4 100644 --- a/dist/requirements.txt +++ b/dist/requirements.txt @@ -1,2 +1,2 @@ -wheel>=0.38.1 +wheel >= 0.40.0 twine diff --git a/doc/Dependency.rst b/doc/Dependency.rst index f608dee7..0e8ba813 100644 --- a/doc/Dependency.rst +++ b/doc/Dependency.rst @@ -68,7 +68,7 @@ the mandatory dependencies too. +-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+ | `Coverage `__ | ≥7.0 | `Apache License, 2.0 `__ | *Not yet evaluated.* | +-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+ -| `mypy `__ | ≥0.990 | `MIT `__ | *Not yet evaluated.* | +| `mypy `__ | ≥1.2 | `MIT `__ | *Not yet evaluated.* | +-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+ | `lxml `__ | ≥4.9 | `BSD 3-Clause `__ | *Not yet evaluated.* | +-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+ @@ -136,7 +136,7 @@ install the mandatory dependencies too. +============================================================================+==============+==========================================================================================================+======================================================================================================================================================+ | `pyTooling `__ | ≥5.0.0 | `Apache License, 2.0 `__ | *None* | +----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+ -| `wheel `__ | ≥0.38.1 | `MIT `__ | *Not yet evaluated.* | +| `wheel `__ | ≥0.40.0 | `MIT `__ | *Not yet evaluated.* | +----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+ @@ -165,7 +165,7 @@ install the mandatory dependencies too. +----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+ | **Package** | **Version** | **License** | **Dependencies** | +==========================================================+==============+===========================================================================================+======================+ -| `wheel `__ | ≥0.38.1 | `MIT `__ | *Not yet evaluated.* | +| `wheel `__ | ≥0.40.0 | `MIT `__ | *Not yet evaluated.* | +----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+ -| `Twine `__ | any | `Apache License, 2.0 `__ | *Not yet evaluated.* | +| `Twine `__ | ≥4.0.2 | `Apache License, 2.0 `__ | *Not yet evaluated.* | +----------------------------------------------------------+--------------+-------------------------------------------------------------------------------------------+----------------------+ diff --git a/pyEDAA/Reports/Testcases/OSVVM.py b/pyEDAA/Reports/Testcases/OSVVM.py index f90ce3fe..9ce8e47d 100644 --- a/pyEDAA/Reports/Testcases/OSVVM.py +++ b/pyEDAA/Reports/Testcases/OSVVM.py @@ -11,7 +11,7 @@ # # # License: # # ==================================================================================================================== # -# Copyright 2021-2022 Electronic Design Automation Abstraction (EDA²) # +# Copyright 2021-2023 Electronic Design Automation Abstraction (EDA²) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # diff --git a/pyEDAA/Reports/Testcases/__init__.py b/pyEDAA/Reports/Testcases/__init__.py index 104fb194..0b793db0 100644 --- a/pyEDAA/Reports/Testcases/__init__.py +++ b/pyEDAA/Reports/Testcases/__init__.py @@ -11,7 +11,7 @@ # # # License: # # ==================================================================================================================== # -# Copyright 2021-2022 Electronic Design Automation Abstraction (EDA²) # +# Copyright 2021-2023 Electronic Design Automation Abstraction (EDA²) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # diff --git a/pyEDAA/Reports/__init__.py b/pyEDAA/Reports/__init__.py index 285e0dcd..6506f34c 100644 --- a/pyEDAA/Reports/__init__.py +++ b/pyEDAA/Reports/__init__.py @@ -11,7 +11,7 @@ # # # License: # # ==================================================================================================================== # -# Copyright 2021-2022 Electronic Design Automation Abstraction (EDA²) # +# Copyright 2021-2023 Electronic Design Automation Abstraction (EDA²) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # @@ -31,7 +31,7 @@ """Various report abstract data models and report format converters.""" __author__ = "Patrick Lehmann" __email__ = "Paebbels@gmail.com" -__copyright__ = "2021-2022, Electronic Design Automation Abstraction (EDA²)" +__copyright__ = "2021-2023, Electronic Design Automation Abstraction (EDA²)" __license__ = "Apache License, Version 2.0" __version__ = "0.1.0" __keywords__ = ["Reports", "Abstract Model", "Data Model", "Test Case", "Test Suite", "OSVVM", "YAML", "XML"] diff --git a/pyproject.toml b/pyproject.toml index 9d49cf9c..1281d4b5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,8 +1,8 @@ [build-system] requires = [ "pyTooling >= 5.0.0", - "setuptools >= 60.9.3", - "wheel >= 0.38.1" + "setuptools >= 68.0.0", + "wheel >= 0.40.0" ] build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 3b1e6137..04e56ba1 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # # # License: # # ==================================================================================================================== # -# Copyright 2021-2022 Electronic Design Automation Abstraction (EDA²) # +# Copyright 2021-2023 Electronic Design Automation Abstraction (EDA²) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # diff --git a/tests/requirements.txt b/tests/requirements.txt index 7719481f..6407e55c 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -8,5 +8,5 @@ pytest>=7.2.0 pytest-cov>=4.0.0 # Static Type Checking -mypy>=0.990 +mypy >= 1.2 lxml>=4.9 diff --git a/tests/unit/OSVVM.py b/tests/unit/OSVVM.py index 19a2250d..f0ba09fa 100644 --- a/tests/unit/OSVVM.py +++ b/tests/unit/OSVVM.py @@ -11,7 +11,7 @@ # # # License: # # ==================================================================================================================== # -# Copyright 2021-2022 Electronic Design Automation Abstraction (EDA²) # +# Copyright 2021-2023 Electronic Design Automation Abstraction (EDA²) # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. #