pypharm 1.5.0__tar.gz → 1.5.2__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.1
2
2
  Name: pypharm
3
- Version: 1.5.0
3
+ Version: 1.5.2
4
4
  Summary: Module for solving pharmacokinetic problems
5
5
  Home-page: https://github.com/Krash13/PyPharm
6
6
  Author: Krash13
@@ -1,3 +1,3 @@
1
- from .models import BaseCompartmentModel, MagicCompartmentModel, ReleaseCompartmentModel, PBPKmod
1
+ from .models import BaseCompartmentModel, MagicCompartmentModel, ReleaseCompartmentModel, PBPKmod, ReleasePBPKmod
2
2
 
3
3
 
@@ -1,2 +1,2 @@
1
1
  from .compartment_models import BaseCompartmentModel, MagicCompartmentModel, ReleaseCompartmentModel
2
- from .pbpk import PBPKmod
2
+ from .pbpk import PBPKmod, ReleasePBPKmod
@@ -253,7 +253,7 @@ class PBPKmod:
253
253
  return x
254
254
 
255
255
  def update_know_params(self, k_cl=None):
256
- if k_cl:
256
+ if k_cl is not None:
257
257
  i = 0
258
258
  for name in self._organs:
259
259
  know_k = self.know_k.get(name)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pypharm
3
- Version: 1.5.0
3
+ Version: 1.5.2
4
4
  Summary: Module for solving pharmacokinetic problems
5
5
  Home-page: https://github.com/Krash13/PyPharm
6
6
  Author: Krash13
@@ -6,7 +6,7 @@ def readme():
6
6
 
7
7
  setup(
8
8
  name='pypharm',
9
- version='1.5.0',
9
+ version='1.5.2',
10
10
  author='Krash13',
11
11
  author_email='krasheninnikov.r.s@muctr.ru',
12
12
  description='Module for solving pharmacokinetic problems',
File without changes
File without changes
File without changes