copulas 0.12.4.dev3__tar.gz → 0.13.1.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.
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/PKG-INFO +9 -5
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/__init__.py +1 -1
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas.egg-info/PKG-INFO +9 -5
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas.egg-info/requires.txt +8 -1
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/pyproject.toml +10 -7
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/LICENSE +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/README.md +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/__init__.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/base.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/clayton.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/frank.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/gumbel.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/independence.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/bivariate/utils.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/datasets.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/errors.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/multivariate/__init__.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/multivariate/base.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/multivariate/gaussian.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/multivariate/tree.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/multivariate/vine.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/optimize/__init__.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/__init__.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/base.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/beta.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/gamma.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/gaussian.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/gaussian_kde.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/log_laplace.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/selection.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/student_t.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/truncated_gaussian.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/univariate/uniform.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/utils.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas/visualization.py +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas.egg-info/SOURCES.txt +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas.egg-info/dependency_links.txt +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/copulas.egg-info/top_level.txt +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/setup.cfg +0 -0
- {copulas-0.12.4.dev3 → copulas-0.13.1.dev0}/tests/test_tasks.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: copulas
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.1.dev0
|
|
4
4
|
Summary: Create tabular synthetic data using copulas-based modeling.
|
|
5
5
|
Author-email: "DataCebo, Inc." <info@sdv.dev>
|
|
6
6
|
License: BSL-1.1
|
|
@@ -20,24 +20,28 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
24
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
|
-
Requires-Python: <3.
|
|
25
|
+
Requires-Python: <3.15,>=3.9
|
|
25
26
|
Description-Content-Type: text/markdown
|
|
26
27
|
License-File: LICENSE
|
|
27
28
|
Requires-Dist: numpy>=1.21.0; python_version < "3.10"
|
|
28
29
|
Requires-Dist: numpy>=1.23.3; python_version >= "3.10" and python_version < "3.12"
|
|
29
30
|
Requires-Dist: numpy>=1.26.0; python_version >= "3.12" and python_version < "3.13"
|
|
30
|
-
Requires-Dist: numpy>=2.1.0; python_version >= "3.13"
|
|
31
|
+
Requires-Dist: numpy>=2.1.0; python_version >= "3.13" and python_version < "3.14"
|
|
32
|
+
Requires-Dist: numpy>=2.3.2; python_version >= "3.14"
|
|
31
33
|
Requires-Dist: pandas>=1.4.0; python_version < "3.11"
|
|
32
34
|
Requires-Dist: pandas>=1.5.0; python_version >= "3.11" and python_version < "3.12"
|
|
33
35
|
Requires-Dist: pandas>=2.1.1; python_version >= "3.12" and python_version < "3.13"
|
|
34
|
-
Requires-Dist: pandas>=2.2.3; python_version >= "3.13"
|
|
36
|
+
Requires-Dist: pandas>=2.2.3; python_version >= "3.13" and python_version < "3.14"
|
|
37
|
+
Requires-Dist: pandas>=2.3.3; python_version >= "3.14"
|
|
35
38
|
Requires-Dist: plotly>=5.10.0; python_version < "3.13"
|
|
36
39
|
Requires-Dist: plotly>=5.12.0; python_version >= "3.13"
|
|
37
40
|
Requires-Dist: scipy>=1.7.3; python_version < "3.10"
|
|
38
41
|
Requires-Dist: scipy>=1.9.2; python_version >= "3.10" and python_version < "3.12"
|
|
39
42
|
Requires-Dist: scipy>=1.12.0; python_version >= "3.12" and python_version < "3.13"
|
|
40
|
-
Requires-Dist: scipy>=1.14.1; python_version >= "3.13"
|
|
43
|
+
Requires-Dist: scipy>=1.14.1; python_version >= "3.13" and python_version < "3.14"
|
|
44
|
+
Requires-Dist: scipy>=1.16.1; python_version >= "3.14"
|
|
41
45
|
Provides-Extra: tutorials
|
|
42
46
|
Requires-Dist: markupsafe>=2.0.1; extra == "tutorials"
|
|
43
47
|
Requires-Dist: scikit-learn>=0.24; python_version < "3.12" and extra == "tutorials"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: copulas
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.1.dev0
|
|
4
4
|
Summary: Create tabular synthetic data using copulas-based modeling.
|
|
5
5
|
Author-email: "DataCebo, Inc." <info@sdv.dev>
|
|
6
6
|
License: BSL-1.1
|
|
@@ -20,24 +20,28 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
22
|
Classifier: Programming Language :: Python :: 3.13
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
24
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
24
|
-
Requires-Python: <3.
|
|
25
|
+
Requires-Python: <3.15,>=3.9
|
|
25
26
|
Description-Content-Type: text/markdown
|
|
26
27
|
License-File: LICENSE
|
|
27
28
|
Requires-Dist: numpy>=1.21.0; python_version < "3.10"
|
|
28
29
|
Requires-Dist: numpy>=1.23.3; python_version >= "3.10" and python_version < "3.12"
|
|
29
30
|
Requires-Dist: numpy>=1.26.0; python_version >= "3.12" and python_version < "3.13"
|
|
30
|
-
Requires-Dist: numpy>=2.1.0; python_version >= "3.13"
|
|
31
|
+
Requires-Dist: numpy>=2.1.0; python_version >= "3.13" and python_version < "3.14"
|
|
32
|
+
Requires-Dist: numpy>=2.3.2; python_version >= "3.14"
|
|
31
33
|
Requires-Dist: pandas>=1.4.0; python_version < "3.11"
|
|
32
34
|
Requires-Dist: pandas>=1.5.0; python_version >= "3.11" and python_version < "3.12"
|
|
33
35
|
Requires-Dist: pandas>=2.1.1; python_version >= "3.12" and python_version < "3.13"
|
|
34
|
-
Requires-Dist: pandas>=2.2.3; python_version >= "3.13"
|
|
36
|
+
Requires-Dist: pandas>=2.2.3; python_version >= "3.13" and python_version < "3.14"
|
|
37
|
+
Requires-Dist: pandas>=2.3.3; python_version >= "3.14"
|
|
35
38
|
Requires-Dist: plotly>=5.10.0; python_version < "3.13"
|
|
36
39
|
Requires-Dist: plotly>=5.12.0; python_version >= "3.13"
|
|
37
40
|
Requires-Dist: scipy>=1.7.3; python_version < "3.10"
|
|
38
41
|
Requires-Dist: scipy>=1.9.2; python_version >= "3.10" and python_version < "3.12"
|
|
39
42
|
Requires-Dist: scipy>=1.12.0; python_version >= "3.12" and python_version < "3.13"
|
|
40
|
-
Requires-Dist: scipy>=1.14.1; python_version >= "3.13"
|
|
43
|
+
Requires-Dist: scipy>=1.14.1; python_version >= "3.13" and python_version < "3.14"
|
|
44
|
+
Requires-Dist: scipy>=1.16.1; python_version >= "3.14"
|
|
41
45
|
Provides-Extra: tutorials
|
|
42
46
|
Requires-Dist: markupsafe>=2.0.1; extra == "tutorials"
|
|
43
47
|
Requires-Dist: scikit-learn>=0.24; python_version < "3.12" and extra == "tutorials"
|
|
@@ -22,11 +22,18 @@ pandas>=2.1.1
|
|
|
22
22
|
scipy>=1.12.0
|
|
23
23
|
|
|
24
24
|
[:python_version >= "3.13"]
|
|
25
|
+
plotly>=5.12.0
|
|
26
|
+
|
|
27
|
+
[:python_version >= "3.13" and python_version < "3.14"]
|
|
25
28
|
numpy>=2.1.0
|
|
26
29
|
pandas>=2.2.3
|
|
27
|
-
plotly>=5.12.0
|
|
28
30
|
scipy>=1.14.1
|
|
29
31
|
|
|
32
|
+
[:python_version >= "3.14"]
|
|
33
|
+
numpy>=2.3.2
|
|
34
|
+
pandas>=2.3.3
|
|
35
|
+
scipy>=1.16.1
|
|
36
|
+
|
|
30
37
|
[dev]
|
|
31
38
|
copulas[test,tutorials]
|
|
32
39
|
pip>=9.0.1
|
|
@@ -13,28 +13,32 @@ classifiers = [
|
|
|
13
13
|
'Programming Language :: Python :: 3.11',
|
|
14
14
|
'Programming Language :: Python :: 3.12',
|
|
15
15
|
'Programming Language :: Python :: 3.13',
|
|
16
|
+
'Programming Language :: Python :: 3.14',
|
|
16
17
|
'Topic :: Scientific/Engineering :: Artificial Intelligence',
|
|
17
18
|
]
|
|
18
19
|
keywords = [ 'copulas' ]
|
|
19
20
|
dynamic = ["version"]
|
|
20
21
|
license = { text = 'BSL-1.1' }
|
|
21
|
-
requires-python = '>=3.9,<3.
|
|
22
|
+
requires-python = '>=3.9,<3.15'
|
|
22
23
|
readme = 'README.md'
|
|
23
24
|
dependencies = [
|
|
24
25
|
"numpy>=1.21.0;python_version<'3.10'",
|
|
25
26
|
"numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'",
|
|
26
27
|
"numpy>=1.26.0;python_version>='3.12' and python_version<'3.13'",
|
|
27
|
-
"numpy>=2.1.0;python_version>='3.13'",
|
|
28
|
+
"numpy>=2.1.0;python_version>='3.13' and python_version<'3.14'",
|
|
29
|
+
"numpy>=2.3.2;python_version>='3.14'",
|
|
28
30
|
"pandas>=1.4.0;python_version<'3.11'",
|
|
29
31
|
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
|
|
30
32
|
"pandas>=2.1.1;python_version>='3.12' and python_version<'3.13'",
|
|
31
|
-
"pandas>=2.2.3;python_version>='3.13'",
|
|
33
|
+
"pandas>=2.2.3;python_version>='3.13' and python_version<'3.14'",
|
|
34
|
+
"pandas>=2.3.3;python_version>='3.14'",
|
|
32
35
|
"plotly>=5.10.0;python_version<'3.13'",
|
|
33
36
|
"plotly>=5.12.0;python_version>='3.13'",
|
|
34
37
|
"scipy>=1.7.3;python_version<'3.10'",
|
|
35
38
|
"scipy>=1.9.2;python_version>='3.10' and python_version<'3.12'",
|
|
36
39
|
"scipy>=1.12.0;python_version>='3.12' and python_version<'3.13'",
|
|
37
|
-
"scipy>=1.14.1;python_version>='3.13'",
|
|
40
|
+
"scipy>=1.14.1;python_version>='3.13' and python_version<'3.14'",
|
|
41
|
+
"scipy>=1.16.1;python_version>='3.14'",
|
|
38
42
|
]
|
|
39
43
|
|
|
40
44
|
[project.urls]
|
|
@@ -150,7 +154,7 @@ namespaces = false
|
|
|
150
154
|
]
|
|
151
155
|
|
|
152
156
|
[tool.bumpversion]
|
|
153
|
-
current_version = "0.
|
|
157
|
+
current_version = "0.13.1.dev0"
|
|
154
158
|
commit = true
|
|
155
159
|
tag = true
|
|
156
160
|
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?'
|
|
@@ -176,7 +180,7 @@ preview = true
|
|
|
176
180
|
line-length = 100
|
|
177
181
|
indent-width = 4
|
|
178
182
|
src = ["copulas"]
|
|
179
|
-
target-version = "
|
|
183
|
+
target-version = "py314"
|
|
180
184
|
exclude = [
|
|
181
185
|
"docs",
|
|
182
186
|
".git",
|
|
@@ -208,7 +212,6 @@ ignore = [
|
|
|
208
212
|
# pydocstyle
|
|
209
213
|
"D107", # Missing docstring in __init__
|
|
210
214
|
"D417", # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449
|
|
211
|
-
"PD901",
|
|
212
215
|
"PD101",
|
|
213
216
|
]
|
|
214
217
|
|
|
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
|
|
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
|