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

Commit ebdaded

Browse files
committed
Reviewed dependencies in documentation.
1 parent c47d70b commit ebdaded

3 files changed

Lines changed: 24 additions & 20 deletions

File tree

doc/Dependencies.rst

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,13 @@ or install the package directly from PyPI (see :ref:`INSTALL`).
3535
3636
.. rubric:: Dependency List
3737

38-
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
39-
| **Package** | **Version** | **License** | **Dependencies** |
40-
+================================================================+=============+===========================================================================================+======================================================================================================================================================================+
41-
| `colorama <https://github.com/tartley/colorama>`__ | ≥0.4.4 | `BSD-3-Clause <https://github.com/tartley/colorama/blob/master/LICENSE.txt>`__ | None |
42-
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
43-
| `pydecor <https://github.com/mplanchard/pydecor>`__ | ≥2.0.1 | `MIT <https://github.com/mplanchard/pydecor/blob/master/LICENSE>`__ | * `dill <https://github.com/uqfoundation/dill>`__ (`BSD 3-clause <https://github.com/uqfoundation/dill/blob/master/LICENSE>`__) |
44-
| | | | * `six <https://github.com/benjaminp/six>`__ (`MIT <https://github.com/benjaminp/six/blob/master/LICENSE>`__) |
45-
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
46-
| `pyMetaClasses <https://github.com/Paebbels/pyMetaClasses>`__ | ≥1.3.1 | `Apache License 2.0 <https://github.com/Paebbels/pyMetaClasses/blob/master/LICENSE.md>`__ | * `pydecor <https://github.com/mplanchard/pydecor>`__ (`MIT <https://github.com/mplanchard/pydecor/blob/master/LICENSE>`__; see above) |
47-
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
48-
| `pyExceptions <https://github.com/Paebbels/pyExceptions>`__ | ≥1.1.1 | `Apache License 2.0 <https://github.com/Paebbels/pyExceptions/blob/master/LICENSE.md>`__ | * `pydecor <https://github.com/mplanchard/pydecor>`__ (`MIT <https://github.com/mplanchard/pydecor/blob/master/LICENSE>`__; see above) |
49-
| | | | * `SphinxExtensions <https://github.com/Paebbels/SphinxExtensions>`__ (`Apache License 2.0 <https://github.com/Paebbels/SphinxExtensions/blob/master/LICENSE.md>`__) |
50-
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
38+
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
39+
| **Package** | **Version** | **License** | **Dependencies** |
40+
+==========================================================+=============+===========================================================================================+=================================================================================================================================+
41+
| `colorama <https://github.com/tartley/colorama>`__ | ≥0.4.4 | `BSD-3-Clause <https://github.com/tartley/colorama/blob/master/LICENSE.txt>`__ | None |
42+
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
43+
| `pyTooling <https://github.com/pyTooling/pyTooling>`__ | ≥1.4.3 | `Apache License, 2.0 <https://github.com/pyTooling/pyTooling/blob/master/LICENSE.txt>`__ | *None* |
44+
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------+
5145

5246

5347

@@ -76,11 +70,15 @@ Use the :file:`tests/requirements.txt` file to install all dependencies via
7670
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
7771
| **Package** | **Version** | **License** | **Dependencies** |
7872
+===========================================================+=============+========================================================================================+======================+
79-
| `pytest <https://github.com/pytest-dev/pytest>`__ | ≥6.2.4 | `MIT <https://github.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
73+
| `pytest <https://github.com/pytest-dev/pytest>`__ | ≥6.2.5 | `MIT <https://github.com/pytest-dev/pytest/blob/master/LICENSE>`__ | *Not yet evaluated.* |
8074
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
81-
| `pytest-cov <https://github.com/pytest-dev/pytest-cov>`__ |2.12.1 | `MIT <https://github.com/pytest-dev/pytest-cov/blob/master/LICENSE>`__ | *Not yet evaluated.* |
75+
| `pytest-cov <https://github.com/pytest-dev/pytest-cov>`__ |3.0.0 | `MIT <https://github.com/pytest-dev/pytest-cov/blob/master/LICENSE>`__ | *Not yet evaluated.* |
8276
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
83-
| `Coverage <https://github.com/nedbat/coveragepy>`__ | ≥5.5 | `Apache License, 2.0 <https://github.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
77+
| `Coverage <https://github.com/nedbat/coveragepy>`__ | ≥6.1 | `Apache License, 2.0 <https://github.com/nedbat/coveragepy/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
78+
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
79+
| `mypy <https://github.com/python/mypy>`__ | ≥0.910 | `MIT <https://github.com/python/mypy/blob/master/LICENSE>`__ | *Not yet evaluated.* |
80+
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
81+
| `lxml <https://github.com/lxml/lxml>`__ | ≥4.6.4 | `BSD 3-Clause <https://github.com/lxml/lxml/blob/master/LICENSE.txt>`__ | *Not yet evaluated.* |
8482
+-----------------------------------------------------------+-------------+----------------------------------------------------------------------------------------+----------------------+
8583

8684

pyTooling/TerminalUI/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@
3535
from pyTooling.Decorators import export
3636
from pyTooling.MetaClasses import Singleton
3737

38-
39-
__version__ = "1.5.2"
38+
__author__ = "Patrick Lehmann"
39+
__copyright__ = "2007-2021, Patrick Lehmann"
40+
__license__ = "Apache License, Version 2.0"
41+
__version__ = "1.5.2"
4042

4143

4244
@export

tests/requirements.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
Coverage>=6.1
55

66
# Test Runner
7-
pytest>=6.2.4
8-
pytest-cov>=2.12.1
7+
pytest>=6.2.5
8+
pytest-cov>=3.0.0
9+
10+
# Static Type Checking
11+
mypy>=0.910
12+
lxml>=4.6.4

0 commit comments

Comments
 (0)