Skip to content

Commit dcbd86b

Browse files
authored
v1.5.5
2 parents 4481d0e + 53ac117 commit dcbd86b

File tree

12 files changed

+20
-11
lines changed

12 files changed

+20
-11
lines changed

.github/workflows/Pipeline.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
- Coverage
5959
with:
6060
python_version: ${{ fromJson(needs.Params.outputs.params).python_version }}
61-
requirements: -r build/requirements.txt
6261
artifact: ${{ fromJson(needs.Params.outputs.params).artifacts.package }}
6362

6463
Release:

.idea/modules.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/pyTooling.TerminalUI.iml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/requirements.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

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.7.0 | `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>`__ |1.7.0 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling.Packaging/blob/main/LICENSE.md>`__ | *None* |
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>=1.7.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

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[build-system]
2+
requires = [
3+
"pyTooling >= 1.7.0",
4+
"setuptools >= 35.0.2",
5+
"wheel >= 0.29.0"
6+
]
7+
build-backend = "setuptools.build_meta"
8+
9+
[tool.black]
10+
line-length = 120

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.7.0

0 commit comments

Comments
 (0)