Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 23e4dd4

Browse files
committed
Bumped dependencies.
1 parent 061b002 commit 23e4dd4

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

build/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pyTooling.Packaging>=0.3.1
1+
pyTooling.Packaging>=0.4.0
22

33
wheel

doc/Dependencies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ PyPI (see :ref:`installation`).
4040
+==========================================================+=============+===========================================================================================+=================================================================================================================================+
4141
| `colorama <https://GitHub.com/tartley/colorama>`__ | ≥0.4.4 | `BSD-3-Clause <https://GitHub.com/tartley/colorama/blob/master/LICENSE.txt>`__ | None |
4242
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
43-
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ | ≥1.5.2 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__ | *None* |
43+
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ | ≥1.6.1 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__ | *None* |
4444
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
4545

4646

@@ -139,7 +139,7 @@ install the mandatory dependencies too.
139139
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
140140
| **Package** | **Version** | **License** | **Dependencies** |
141141
+============================================================================+==============+==========================================================================================================+======================================================================================================================================================+
142-
| `pyTooling.Packaging <https://GitHub.com/pyTooling/pyTooling.Packaging>`__ | ≥0.3.1 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling.Packaging/blob/main/LICENSE.md>`__ | * `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ (`Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__) |
142+
| `pyTooling.Packaging <https://GitHub.com/pyTooling/pyTooling.Packaging>`__ | ≥0.4.0 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling.Packaging/blob/main/LICENSE.md>`__ | * `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ (`Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__) |
143143
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
144144
| `wheel <https://GitHub.com/pypa/wheel>`__ | any | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
145145
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ../requirements.txt
22

3-
pyTooling.Packaging>=0.3.1
3+
pyTooling.Packaging>=0.4.0
44

55
# Enforce latest version on ReadTheDocs
66
sphinx>=4.3.0

pyTooling/TerminalUI/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
__email__ = "Paebbels@gmail.com"
4141
__copyright__ = "2007-2021, Patrick Lehmann"
4242
__license__ = "Apache License, Version 2.0"
43-
__version__ = "1.5.4"
43+
__version__ = "1.5.5"
44+
__keywords__ = ["terminal", "shell", "text user interface", "TUI", "console", "message logging"]
4445

4546

4647
@export

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
colorama>=0.4.4
22

3-
pyTooling>=1.5.2
3+
pyTooling>=1.6.1

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,5 @@
4141
packageName=packageName,
4242
description="A set of helpers to implement a text user interface (TUI) in a terminal.",
4343
gitHubNamespace=gitHubNamespace,
44-
keywords="Python3 Terminal Shell Text User Interface TUI",
4544
sourceFileWithVersion=packageInformationFile,
4645
)

tests/unit/TerminalUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
from pyTooling.TerminalUI import LineTerminal
4343

4444

45-
if __name__ == "__main__":
45+
if __name__ == "__main__": # pragma: no cover
4646
print("ERROR: you called a testcase declaration file as an executable module.")
4747
print("Use: 'python -m unitest <testcase module>'")
4848
exit(1)

0 commit comments

Comments
 (0)