Skip to content

Commit 5c1eb77

Browse files
committed
Bumped dependencies.
1 parent 3d65107 commit 5c1eb77

33 files changed

+192
-190
lines changed

.idea/pyEDAA.ProjectModel.iml

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/requirements.txt

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

doc/Dependency.rst

Lines changed: 14 additions & 14 deletions
Large diffs are not rendered by default.

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@
204204
# Sphinx.Ext.ExtLinks
205205
# ==============================================================================
206206
extlinks = {
207-
"ghissue": ('https://GitHub.com/edaa-org/pyEDAA.ProjectModel/issues/%s', 'issue #'),
208-
"ghpull": ('https://GitHub.com/edaa-org/pyEDAA.ProjectModel/pull/%s', 'pull request #'),
207+
"ghissue": ('https://GitHub.com/edaa-org/pyEDAA.ProjectModel/issues/%s', 'issue #%s'),
208+
"ghpull": ('https://GitHub.com/edaa-org/pyEDAA.ProjectModel/pull/%s', 'pull request #%s'),
209209
"ghsrc": ('https://GitHub.com/edaa-org/pyEDAA.ProjectModel/blob/main/%s', None),
210210
}
211211

doc/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
-r ../requirements.txt
22

3-
pyTooling >= 5.0.0
3+
pyTooling ~= 6.1
44

55
# Enforce latest version on ReadTheDocs
6-
sphinx>=5.3.0
6+
sphinx ~= 7.3
77

88
# Sphinx Extenstions
99
sphinxcontrib-mermaid>=0.7.1
1010
autoapi>=2.0.1
1111
sphinx_fontawesome>=0.0.6
12-
sphinx_autodoc_typehints>=1.19.5
12+
sphinx_autodoc_typehints ~= 2.1

pyEDAA/ProjectModel/Altera/Quartus.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 2017-2023 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2017-2024 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. #

pyEDAA/ProjectModel/Altera/__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 2017-2023 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2017-2024 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. #

pyEDAA/ProjectModel/Attributes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# #
1212
# License: #
1313
# ==================================================================================================================== #
14-
# Copyright 2017-2023 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2017-2024 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. #
@@ -41,7 +41,7 @@ class KeyValueAttribute(Attribute):
4141

4242
_keyValuePairs: Dict[str, str]
4343

44-
def __init__(self):
44+
def __init__(self) -> None:
4545
super().__init__()
4646

4747
self._keyValuePairs = {}

pyEDAA/ProjectModel/GHDL.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 2017-2023 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2017-2024 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. #

pyEDAA/ProjectModel/Intel/QuartusPrime.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 2017-2023 Patrick Lehmann - Boetzingen, Germany #
14+
# Copyright 2017-2024 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)