pyfluids 2.8.0__tar.gz → 2.8.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.
- {pyfluids-2.8.0 → pyfluids-2.8.2}/PKG-INFO +4 -3
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyproject.toml +5 -5
- {pyfluids-2.8.0 → pyfluids-2.8.2}/LICENSE +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/PyPI.md +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/pyfluids_config.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/pyfluids_config_builder.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/singleton.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/unit_converter.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/config/units_system.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/enums/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/enums/fluids_list.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/enums/mix.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/enums/phases.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/fluids/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/fluids/abstract_fluid.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/fluids/fluid.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/fluids/mixture.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/humid_air/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/humid_air/humid_air.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/io/__init__.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/io/abstract_input.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/io/input.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/io/input_humid_air.py +0 -0
- {pyfluids-2.8.0 → pyfluids-2.8.2}/pyfluids/io/outputs_validator.py +0 -0
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyfluids
|
|
3
|
-
Version: 2.8.
|
|
3
|
+
Version: 2.8.2
|
|
4
4
|
Summary: Simple, full-featured, lightweight CoolProp wrapper for Python
|
|
5
5
|
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
6
7
|
Keywords: CoolProp,fluids,mixtures,humid,air,thermophysical,properties,thermodynamics
|
|
7
8
|
Author: Vladimir Portyanikhin
|
|
8
9
|
Author-email: v.portyanikhin@ya.ru
|
|
@@ -33,7 +34,7 @@ Classifier: Topic :: Scientific/Engineering
|
|
|
33
34
|
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
|
|
34
35
|
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
35
36
|
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
36
|
-
Requires-Dist: CoolProp (==
|
|
37
|
+
Requires-Dist: CoolProp (==7.1.0)
|
|
37
38
|
Requires-Dist: tomli (==2.2.1)
|
|
38
39
|
Project-URL: Documentation, https://github.com/portyanikhin/PyFluids
|
|
39
40
|
Project-URL: Homepage, https://github.com/portyanikhin/PyFluids
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pyfluids"
|
|
3
|
-
version = "2.8.
|
|
3
|
+
version = "2.8.2"
|
|
4
4
|
description = "Simple, full-featured, lightweight CoolProp wrapper for Python"
|
|
5
5
|
authors = [
|
|
6
6
|
"Vladimir Portyanikhin <v.portyanikhin@ya.ru>",
|
|
@@ -54,13 +54,13 @@ packages = [
|
|
|
54
54
|
|
|
55
55
|
[tool.poetry.dependencies]
|
|
56
56
|
python = ">=3.9, <3.14"
|
|
57
|
-
CoolProp = "
|
|
57
|
+
CoolProp = "7.1.0"
|
|
58
58
|
tomli = "2.2.1"
|
|
59
59
|
|
|
60
60
|
[tool.poetry.group.test.dependencies]
|
|
61
|
-
pytest = "8.
|
|
62
|
-
pytest-asyncio = "
|
|
63
|
-
pytest-cov = "
|
|
61
|
+
pytest = "8.4.2"
|
|
62
|
+
pytest-asyncio = "1.2.0"
|
|
63
|
+
pytest-cov = "7.0.0"
|
|
64
64
|
|
|
65
65
|
[tool.pytest.ini_options]
|
|
66
66
|
asyncio_default_fixture_loop_scope = "function"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|