pythonic-fp-fptools 5.1.0__tar.gz → 5.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/CHANGELOG.rst +2 -2
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/PKG-INFO +5 -5
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/pyproject.toml +5 -5
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/.gitignore +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/LICENSE +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/README.rst +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/__init__.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/either.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/either.pyi +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/function.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/function.pyi +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/lazy.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/lazy.pyi +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/maybe.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/maybe.pyi +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/py.typed +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/state.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/state.pyi +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_either.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_sequence_either.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_str_repr_either.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/function/test_function.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/lazy/test_lazy.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/maybe.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/test_sequence_maybe.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/maybe/test_str_repr_maybe.py +0 -0
- {pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/state/test_state.py +0 -0
|
@@ -17,8 +17,8 @@ See `Semantic Versioning 2.0.0 <https://semver.org>`_.
|
|
|
17
17
|
Releases and Important Milestones
|
|
18
18
|
---------------------------------
|
|
19
19
|
|
|
20
|
-
5.1.0 -
|
|
21
|
-
|
|
20
|
+
5.1.0 - 2025-09-09
|
|
21
|
+
~~~~~~~~~~~~~~~~~~
|
|
22
22
|
|
|
23
23
|
Updated docstrings for new Sphinx docs structure. Probably just a PATCH release,
|
|
24
24
|
made it a MINOR release due to introducing .pyi files.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonic-fp-fptools
|
|
3
|
-
Version: 5.1.
|
|
3
|
+
Version: 5.1.1
|
|
4
4
|
Summary: Pythonic FP - Functional Programming Tools
|
|
5
5
|
Keywords: either,fp,functional,functional programming,lazy,maybe,monad,non-strict
|
|
6
6
|
Author-email: "Geoffrey R. Scheller" <geoffrey@scheller.com>
|
|
@@ -14,11 +14,11 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.13
|
|
15
15
|
Classifier: Typing :: Typed
|
|
16
16
|
License-File: LICENSE
|
|
17
|
-
Requires-Dist: pythonic-fp-booleans>=1.1.
|
|
18
|
-
Requires-Dist: pythonic-fp-circulararray>=5.3.
|
|
19
|
-
Requires-Dist: pythonic-fp-sentinels>=2.1.
|
|
17
|
+
Requires-Dist: pythonic-fp-booleans>=1.1.1
|
|
18
|
+
Requires-Dist: pythonic-fp-circulararray>=5.3.2
|
|
19
|
+
Requires-Dist: pythonic-fp-sentinels>=2.1.0
|
|
20
20
|
Requires-Dist: pytest>=8.4.1 ; extra == "test"
|
|
21
|
-
Requires-Dist: pythonic-fp-containers>=3.0.
|
|
21
|
+
Requires-Dist: pythonic-fp-containers>=3.0.0 ; extra == "test"
|
|
22
22
|
Project-URL: Changelog, https://github.com/grscheller/pythonic-fp-fptools/blob/main/CHANGELOG.rst
|
|
23
23
|
Project-URL: Documentation, https://grscheller.github.io/pythonic-fp/fptools/development/build/html/releases.html
|
|
24
24
|
Project-URL: Homepage, https://github.com/grscheller/pythonic-fp/blob/main/README.md
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "pythonic-fp-fptools"
|
|
3
|
-
version = "5.1.
|
|
3
|
+
version = "5.1.1"
|
|
4
4
|
readme = "README.rst"
|
|
5
5
|
requires-python = ">=3.12"
|
|
6
6
|
license = { file = "LICENSE" }
|
|
@@ -25,9 +25,9 @@ classifiers = [
|
|
|
25
25
|
"Typing :: Typed",
|
|
26
26
|
]
|
|
27
27
|
dependencies = [
|
|
28
|
-
"pythonic-fp-booleans>=1.1.
|
|
29
|
-
"pythonic-fp-circulararray>=5.3.
|
|
30
|
-
"pythonic-fp-sentinels>=2.1.
|
|
28
|
+
"pythonic-fp-booleans>=1.1.1",
|
|
29
|
+
"pythonic-fp-circulararray>=5.3.2",
|
|
30
|
+
"pythonic-fp-sentinels>=2.1.0",
|
|
31
31
|
]
|
|
32
32
|
dynamic = ["description"]
|
|
33
33
|
|
|
@@ -40,7 +40,7 @@ Source = "https://github.com/grscheller/pythonic-fp-fptools"
|
|
|
40
40
|
[project.optional-dependencies]
|
|
41
41
|
test = [
|
|
42
42
|
"pytest>=8.4.1",
|
|
43
|
-
"pythonic-fp-containers>=3.0.
|
|
43
|
+
"pythonic-fp-containers>=3.0.0",
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
[build-system]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/src/pythonic_fp/fptools/function.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_sequence_either.py
RENAMED
|
File without changes
|
{pythonic_fp_fptools-5.1.0 → pythonic_fp_fptools-5.1.1}/tests/either/test_str_repr_either.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|