pnt-functional 0.1.0__tar.gz → 0.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.
- pnt_functional-0.1.1/CHANGELOG.md +7 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/PKG-INFO +1 -1
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/package.json +1 -1
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/pixi.lock +2 -2
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/pyproject.toml +3 -2
- pnt_functional-0.1.0/CHANGELOG.md +0 -22
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/.gitignore +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/README.md +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/README.md +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/default_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/default_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/dev_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/dev_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/interactive_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/interactive_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/lint_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/lint_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/test_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/test_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/types_linux-64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/conda/types_osx-arm64_conda_spec.txt +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/src/.keep +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/src/pnt_functional/__init__.py +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/src/pnt_functional/main.py +0 -0
- {pnt_functional-0.1.0 → pnt_functional-0.1.1}/src/pnt_functional/tests/test_main.py +0 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [pnt-functional-v0.1.1](https://github.com/sciexp/python-nix-template/compare/pnt-functional-v0.1.0...pnt-functional-v0.1.1) (2025-03-21)
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **pnt-functional:** set pytest to produce cov xml report ([75c7abe](https://github.com/sciexp/python-nix-template/commit/75c7abecce0d695a87dc3bbf00f03fb10e1ad506))
|
|
@@ -1027,8 +1027,8 @@ packages:
|
|
|
1027
1027
|
requires_python: '>=3.8'
|
|
1028
1028
|
- pypi: .
|
|
1029
1029
|
name: pnt-functional
|
|
1030
|
-
version: 0.1.
|
|
1031
|
-
sha256:
|
|
1030
|
+
version: 0.1.1
|
|
1031
|
+
sha256: d764eca8765b99e6ee930d1ee377b1f1431f04d60e7c6019cddb597c5b00c554
|
|
1032
1032
|
requires_dist:
|
|
1033
1033
|
- beartype>=0.19.0,<0.20.0
|
|
1034
1034
|
- expression>=5.5.0
|
|
@@ -19,7 +19,7 @@ license = { text = "Apache-2.0" }
|
|
|
19
19
|
name = "pnt-functional"
|
|
20
20
|
readme = "README.md"
|
|
21
21
|
requires-python = ">=3.11,<3.13"
|
|
22
|
-
version = "0.1.
|
|
22
|
+
version = "0.1.1"
|
|
23
23
|
|
|
24
24
|
[project.scripts]
|
|
25
25
|
pnt-functional = "pnt_functional.main:greet"
|
|
@@ -89,7 +89,7 @@ types = "pyright src/"
|
|
|
89
89
|
|
|
90
90
|
[tool.pixi.package]
|
|
91
91
|
name = "pnt-functional"
|
|
92
|
-
version = "0.1.
|
|
92
|
+
version = "0.1.1"
|
|
93
93
|
|
|
94
94
|
[tool.pixi.package.run-dependencies]
|
|
95
95
|
beartype = ">=0.19.0,<0.20.0"
|
|
@@ -115,6 +115,7 @@ addopts = """
|
|
|
115
115
|
--disable-warnings
|
|
116
116
|
--cov=src/pnt_functional/
|
|
117
117
|
--cov-report=term-missing
|
|
118
|
+
--cov-report=xml
|
|
118
119
|
--durations=0
|
|
119
120
|
"""
|
|
120
121
|
log_level = "INFO"
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [pnt-functional-v0.1.0-beta.1](https://github.com/sciexp/python-nix-template/compare/pnt-functional-v0.0.0...pnt-functional-v0.1.0-beta.1) (2025-03-09)
|
|
4
|
-
|
|
5
|
-
### Features
|
|
6
|
-
|
|
7
|
-
* **pnt-functional:** add semantic-release configuration ([d8215aa](https://github.com/sciexp/python-nix-template/commit/d8215aa446738ef56d25e734a01fea41b9daec02))
|
|
8
|
-
* **pnt-functional:** disable release commits ([5f3e0b4](https://github.com/sciexp/python-nix-template/commit/5f3e0b45c779c9586643ecd1f80e13129dcea2d4))
|
|
9
|
-
|
|
10
|
-
### Bug Fixes
|
|
11
|
-
|
|
12
|
-
* **package.json:** remove semantic-release shadow script ([63a87c7](https://github.com/sciexp/python-nix-template/commit/63a87c74247b725ee9889b1c37347e8c9ed38b6a))
|
|
13
|
-
* **package:** add pnt-functional versionable assets ([96c9385](https://github.com/sciexp/python-nix-template/commit/96c93854b31109ef75cafc30854723c22940a6a3))
|
|
14
|
-
* **package:** disable assets in other directories ([5a32c2b](https://github.com/sciexp/python-nix-template/commit/5a32c2bdcfab490111ee676e20dbfed319aa2eaf))
|
|
15
|
-
* **pnt-functional:** add semantic-release-monorepo ([7b037ed](https://github.com/sciexp/python-nix-template/commit/7b037ed0868d8dd0acd87aa1fed9347d6492a01a))
|
|
16
|
-
* **pnt-functional:** extend root package.json ([099f83b](https://github.com/sciexp/python-nix-template/commit/099f83b7e3ead10467542069536771f2c36fb445))
|
|
17
|
-
* **pnt-functional:** mirror root package.json ([58ea80e](https://github.com/sciexp/python-nix-template/commit/58ea80e6087795eb7998e8a833f9a28f8d2d3759))
|
|
18
|
-
* **pnt-functional:** reference root uv.lock in assets ([dd3ea8d](https://github.com/sciexp/python-nix-template/commit/dd3ea8d0bc5371d4213f92dde85de758ab323f35))
|
|
19
|
-
* **pnt-functional:** set `__version__` from metadata ([60158db](https://github.com/sciexp/python-nix-template/commit/60158db6763f5548fd0161f29d51fe521a54ab02))
|
|
20
|
-
* **pnt-functional:** set package-specific tag format ([f228d47](https://github.com/sciexp/python-nix-template/commit/f228d4765ad3d4ed665dc81d2c9c4f753b6a8db6))
|
|
21
|
-
* **pnt-functional:** use pixi.project table instead of workspace ([adca06a](https://github.com/sciexp/python-nix-template/commit/adca06a277704f133f507bc88aa27cab4d3c1cff))
|
|
22
|
-
* **pyproject:** exclude tests from coverage ([fc03e2d](https://github.com/sciexp/python-nix-template/commit/fc03e2d3645a9b3d054b438aaf0d3bd34e3ba7e0))
|
|
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
|
|
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
|
|
File without changes
|