Skip to content

Commit

Permalink
v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Dec 16, 2021
2 parents 22a9774 + ba66146 commit 472b0c0
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ jobs:
- Coverage
with:
python_version: ${{ fromJson(needs.Params.outputs.params).python_version }}
requirements: -r build/requirements.txt
artifact: ${{ fromJson(needs.Params.outputs.params).artifacts.package }}

Release:
Expand Down
3 changes: 0 additions & 3 deletions build/requirements.txt

This file was deleted.

4 changes: 2 additions & 2 deletions doc/Dependencies.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ or install the package directly from PyPI (see :ref:`installation`).
+==========================================================+=============+===========================================================================================+======================================================================================================================================================================+
| `py-flags <https://GitHub.com/pasztorpisti/py-flags>`__ | ≥1.1.4 | `MIT <https://GitHub.com/pasztorpisti/py-flags/blob/master/LICENSE.txt>`__ | * `dictionaries <https://GitHub.com/pasztorpisti/py-dictionaries>`__ (`MIT <https://GitHub.com/pasztorpisti/py-dictionaries/blob/master/LICENSE.txt>`__) |
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ | ≥1.5.2 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__ | *None* |
| `pyTooling <https://GitHub.com/pyTooling/pyTooling>`__ | ≥1.7.0 | `Apache License, 2.0 <https://GitHub.com/pyTooling/pyTooling/blob/main/LICENSE.txt>`__ | *None* |
+----------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+


Expand Down Expand Up @@ -138,7 +138,7 @@ install the mandatory dependencies too.
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
| **Package** | **Version** | **License** | **Dependencies** |
+============================================================================+==============+==========================================================================================================+======================================================================================================================================================+
| `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>`__) |
| `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* |
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
| `wheel <https://GitHub.com/pypa/wheel>`__ | any | `MIT <https://github.com/pypa/wheel/blob/main/LICENSE.txt>`__ | *Not yet evaluated.* |
+----------------------------------------------------------------------------+--------------+----------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r ../requirements.txt

pyTooling.Packaging>=0.3.1
pyTooling>=1.7.0

# Enforce latest version on ReadTheDocs
sphinx>=4.3.0
Expand Down
3 changes: 2 additions & 1 deletion pyTooling/GenericPath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
__email__ = "Paebbels@gmail.com"
__copyright__ = "2017-2021, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "0.2.2"
__version__ = "0.2.3"
__keywords__ = ["path", "generic path", "generic library", "url"]

from typing import List

Expand Down
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[build-system]
requires = [
"pyTooling >= 1.7.0",
"setuptools >= 35.0.2",
"wheel >= 0.29.0"
]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 120
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
py-flags>=1.1.4
pyTooling>=1.5.2
pyTooling>=1.7.0
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
packageName=packageName,
description="A generic path implementation to derive domain specific path libraries.",
gitHubNamespace=gitHubNamespace,
keywords="Python3 Path Generic-Library",
sourceFileWithVersion=packageInformationFile,
developmentStatus="beta"
)
2 changes: 1 addition & 1 deletion tests/unit/URL.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
from pyTooling.GenericPath.URL import URL, Protocols


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

0 comments on commit 472b0c0

Please sign in to comment.