Skip to content

Commit

Permalink
Bumped dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Sep 25, 2024
1 parent 9542ea5 commit 93e8dbd
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 33 deletions.
18 changes: 16 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,30 @@
# New Features


* tbd
* tbd

# Changes

* tbd
* tbd

# Bug Fixes

* tbd
* tbd

# Documentation

* tbd
* tbd

# Unit Tests

* tbd
* tbd

----------
# Related PRs:
# Related Issues and Pull-Requests

* tbd
* tbd
2 changes: 1 addition & 1 deletion dist/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
wheel ~= 0.43
wheel ~= 0.44
twine ~= 5.1
24 changes: 12 additions & 12 deletions doc/Dependency.rst

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ Proposal to define an abstract model for outputs from EDA tools and logging libr
* OSVVM (YAML files)




.. _contributors:
.. _CONTRIBUTORS:

Contributors
************
Expand All @@ -65,6 +63,10 @@ Contributors
* `and more... <https://GitHub.com/edaa-org/pyEDAA.Reports/graphs/contributors>`__


.. _LICENSE:

.. todo:: add license texts here

.. toctree::
:hidden:

Expand Down
6 changes: 3 additions & 3 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
-r ../requirements.txt

pyTooling ~= 6.4
pyTooling ~= 6.6
colorama >= 0.4.6
ruamel.yaml ~= 0.18.6
setuptools ~= 70.3
setuptools ~= 75.1

# Enforce latest version on ReadTheDocs
sphinx ~= 7.4
Expand All @@ -21,7 +21,7 @@ sphinxcontrib-mermaid >= 0.9.2
autoapi >= 2.0.1
sphinx_design >= 0.5.0
sphinx-copybutton >= 0.5.2
sphinx_autodoc_typehints ~= 2.2
sphinx_autodoc_typehints ~= 2.3
# changelog>=0.3.5
sphinx_reports ~= 0.6

Expand Down
3 changes: 2 additions & 1 deletion pyEDAA/Reports/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@
class ReportException(Exception):
# WORKAROUND: for Python <3.11
# Implementing a dummy method for Python versions before
__notes__: List[str]
if version_info < (3, 11): # pragma: no cover
__notes__: List[str]

def add_note(self, message: str) -> None:
try:
self.__notes__.append(message)
Expand Down
17 changes: 11 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[build-system]
requires = [
"setuptools ~= 70.3",
"wheel ~= 0.43",
"pyTooling ~= 6.5"
"setuptools ~= 75.1",
"wheel ~= 0.44",
"pyTooling ~= 6.6"
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -34,9 +34,14 @@ junit_logging = "all"
[tool.interrogate]
color = true
verbose = 1 # possible values: 0 (minimal output), 1 (-v), 2 (-vv)
fail-under = 80
#generate-badge = "."
#badge-format = "png"
fail-under = 59
exclude = [
"build",
"dist",
"doc",
"tests",
"setup.py"
]
ignore-setters = true

[tool.coverage.run]
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pyTooling ~= 6.4
pyTooling ~= 6.6
ruamel.yaml ~= 0.18.6
lxml ~= 5.2
lxml ~= 5.3
6 changes: 3 additions & 3 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
Coverage ~= 7.6

# Test Runner
pytest ~= 8.2
pytest ~= 8.3
pytest-cov ~= 5.0

# Static Type Checking
mypy ~= 1.10
mypy ~= 1.11
typing_extensions ~= 4.12
lxml ~= 5.2
lxml ~= 5.3

0 comments on commit 93e8dbd

Please sign in to comment.