Skip to content

Commit 8e85159

Browse files
committed
v1.0.4
-------- 2023-07-21: - update requirements
1 parent f5ff450 commit 8e85159

6 files changed

Lines changed: 26 additions & 10 deletions

File tree

.docs/README_template.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lib_path
22
========
33

44

5-
Version v1.0.3 as of 2023-07-21 see `Changelog`_
5+
Version v1.0.4 as of 2023-07-21 see `Changelog`_
66

77

88
.. include:: ./badges.rst

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v1.0.4
5+
--------
6+
2023-07-21:
7+
- update requirements
8+
49
v1.0.3
510
--------
611
2023-07-21:

README.rst

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lib_path
22
========
33

44

5-
Version v1.0.3 as of 2023-07-21 see `Changelog`_
5+
Version v1.0.4 as of 2023-07-21 see `Changelog`_
66

77
|build_badge| |codeql| |license| |jupyter| |pypi|
88
|pypi-downloads| |black| |codecov| |cc_maintain| |cc_issues| |cc_coverage| |snyk|
@@ -224,6 +224,8 @@ following modules will be automatically installed :
224224
.. code-block:: bash
225225
226226
## Project Requirements
227+
cli_exit_tools
228+
lib_detect_testenv
227229
lib_platform
228230
229231
Acknowledgements
@@ -247,6 +249,11 @@ This software is licensed under the `MIT license <http://en.wikipedia.org/wiki/M
247249
Changelog
248250
=========
249251
252+
v1.0.4
253+
--------
254+
2023-07-21:
255+
- update requirements
256+
250257
v1.0.3
251258
--------
252259
2023-07-21:

lib_path/__init__conf__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
name = 'lib_path'
44
title = 'path related function - deprecated'
5-
version = 'v1.0.3'
5+
version = 'v1.0.4'
66
url = 'https://github.com/bitranox/lib_path'
77
author = 'Robert Nowotny'
88
author_email = 'bitranox@gmail.com'
@@ -16,7 +16,7 @@ def print_info() -> None:
1616
1717
path related function - deprecated
1818
19-
Version : v1.0.3
19+
Version : v1.0.4
2020
Url : https://github.com/bitranox/lib_path
2121
Author : Robert Nowotny
2222
Email : bitranox@gmail.com""")

pyproject.toml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ classifiers = [
2626
# dependencies - former setup.cfg "install_requires"
2727
# see: https://setuptools.pypa.io/en/latest/userguide/dependency_management.html
2828
dependencies = [
29+
"cli_exit_tools",
30+
"lib_detect_testenv",
2931
"lib_platform",
3032
]
31-
version = "v1.0.3"
33+
version = "v1.0.4"
3234
# seems to be not allowed anymore
3335
# zip-save = false
3436

@@ -40,16 +42,16 @@ Changelog = "https://github.com/bitranox/lib_path/blob/master/CHANGES.rst"
4042

4143
[project.optional-dependencies]
4244
test = [
45+
"coverage",
46+
"pytest-cov",
4347
"readme_renderer",
48+
"codecov",
49+
"pytest",
4450
"mypy",
4551
"pytest-runner",
52+
"coloredlogs",
4653
"black",
4754
"flake8",
48-
"coloredlogs",
49-
"coverage",
50-
"pytest",
51-
"pytest-cov",
52-
"codecov",
5355
]
5456

5557
[project.scripts]

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
## Project Requirements
2+
cli_exit_tools
3+
lib_detect_testenv
24
lib_platform

0 commit comments

Comments
 (0)