liesel-gam 0.0.4__tar.gz → 0.0.5.dev0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: liesel_gam
3
- Version: 0.0.4
3
+ Version: 0.0.5.dev0
4
4
  Summary: Functionality for Generalized Additive Models in Liesel
5
5
  Author: Johannes Brachem
6
6
  License-File: LICENSE
@@ -17,7 +17,7 @@ Description-Content-Type: text/markdown
17
17
 
18
18
  [![pre-commit](https://github.com/liesel-devs/liesel_gam/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pre-commit.yml)
19
19
  [![pytest](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml/badge.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
20
- [![pytest-cov](tests/coverage.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
20
+ [![pytest-cov](https://raw.githubusercontent.com/liesel-devs/liesel_gam/refs/heads/main/tests/coverage.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
21
21
 
22
22
  This package provides functionality to make the setup of
23
23
  semiparametric generalized additive distributional regression models in [Liesel](https://github.com/liesel-devs/liesel)
@@ -36,7 +36,13 @@ In any case, this package comes with no warranty or guarantees.
36
36
 
37
37
  ## Installation
38
38
 
39
- You can install the development version from GitHub via pip:
39
+ You can install `liesel_gam` from pypi:
40
+
41
+ ```bash
42
+ pip install liesel_gam
43
+ ```
44
+
45
+ You can also install the development version from GitHub via pip:
40
46
 
41
47
  ```bash
42
48
  pip install git+https://github.com/liesel-devs/liesel_gam.git
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![pre-commit](https://github.com/liesel-devs/liesel_gam/actions/workflows/pre-commit.yml/badge.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pre-commit.yml)
4
4
  [![pytest](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml/badge.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
5
- [![pytest-cov](tests/coverage.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
5
+ [![pytest-cov](https://raw.githubusercontent.com/liesel-devs/liesel_gam/refs/heads/main/tests/coverage.svg)](https://github.com/liesel-devs/liesel_gam/actions/workflows/pytest.yml)
6
6
 
7
7
  This package provides functionality to make the setup of
8
8
  semiparametric generalized additive distributional regression models in [Liesel](https://github.com/liesel-devs/liesel)
@@ -21,7 +21,13 @@ In any case, this package comes with no warranty or guarantees.
21
21
 
22
22
  ## Installation
23
23
 
24
- You can install the development version from GitHub via pip:
24
+ You can install `liesel_gam` from pypi:
25
+
26
+ ```bash
27
+ pip install liesel_gam
28
+ ```
29
+
30
+ You can also install the development version from GitHub via pip:
25
31
 
26
32
  ```bash
27
33
  pip install git+https://github.com/liesel-devs/liesel_gam.git
@@ -0,0 +1 @@
1
+ __version__ = "0.0.5-dev"
@@ -212,6 +212,8 @@ class Basis(lsl.Var):
212
212
 
213
213
  if name is None:
214
214
  name_ = f"B({value.name})"
215
+ else:
216
+ name_ = name
215
217
 
216
218
  super().__init__(lsl.Calc(fn, value, _name=name_ + "_calc"), name=name_)
217
219
  self.update()
@@ -1 +0,0 @@
1
- __version__ = "0.0.4"
File without changes
File without changes
File without changes