linregmc 0.0.2__tar.gz → 0.0.4__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.
Potentially problematic release.
This version of linregmc might be problematic. Click here for more details.
- {linregmc-0.0.2 → linregmc-0.0.4}/PKG-INFO +8 -3
- {linregmc-0.0.2 → linregmc-0.0.4}/pyproject.toml +3 -3
- {linregmc-0.0.2 → linregmc-0.0.4}/LICENSE +0 -0
- {linregmc-0.0.2 → linregmc-0.0.4}/README.md +0 -0
- {linregmc-0.0.2 → linregmc-0.0.4}/src/linregmc/__init__.py +0 -0
- {linregmc-0.0.2 → linregmc-0.0.4}/src/linregmc/linregmc.py +0 -0
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: linregmc
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Linear regression with Monte Carlo error analysis
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Pär Söderhjelm
|
|
7
|
-
Requires-Python: >=3.
|
|
7
|
+
Requires-Python: >=3.7,<4.0
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
10
15
|
Classifier: Programming Language :: Python :: 3.12
|
|
11
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
12
|
-
Requires-Dist: numpy (>=1.23,<
|
|
17
|
+
Requires-Dist: numpy (>=1.23,<3.0)
|
|
13
18
|
Description-Content-Type: text/markdown
|
|
14
19
|
|
|
15
20
|
# linregmc package (Linear regression with Monte Carlo error analysis)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "linregmc"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.4"
|
|
4
4
|
description = "Linear regression with Monte Carlo error analysis"
|
|
5
5
|
authors = ["Pär Söderhjelm"]
|
|
6
6
|
license = "MIT"
|
|
@@ -11,8 +11,8 @@ packages = [
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
[tool.poetry.dependencies]
|
|
14
|
-
python = "^3.
|
|
15
|
-
numpy = "
|
|
14
|
+
python = "^3.7"
|
|
15
|
+
numpy = ">=1.23,<3.0"
|
|
16
16
|
|
|
17
17
|
[tool.poetry.group.dev.dependencies]
|
|
18
18
|
myst-nb = "^1.3.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|