copulas 0.11.0__tar.gz → 0.11.0.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.
Potentially problematic release.
This version of copulas might be problematic. Click here for more details.
- {copulas-0.11.0 → copulas-0.11.0.dev0}/PKG-INFO +1 -1
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/__init__.py +1 -1
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/PKG-INFO +1 -1
- {copulas-0.11.0 → copulas-0.11.0.dev0}/pyproject.toml +1 -2
- {copulas-0.11.0 → copulas-0.11.0.dev0}/tests/test_tasks.py +3 -5
- {copulas-0.11.0 → copulas-0.11.0.dev0}/LICENSE +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/README.md +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/__init__.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/base.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/clayton.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/frank.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/gumbel.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/independence.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/utils.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/datasets.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/__init__.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/base.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/gaussian.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/tree.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/vine.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/optimize/__init__.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/__init__.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/base.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/beta.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gamma.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gaussian.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gaussian_kde.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/log_laplace.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/selection.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/student_t.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/truncated_gaussian.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/uniform.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/visualization.py +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/SOURCES.txt +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/dependency_links.txt +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/requires.txt +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/top_level.txt +0 -0
- {copulas-0.11.0 → copulas-0.11.0.dev0}/setup.cfg +0 -0
|
@@ -173,11 +173,10 @@ namespaces = false
|
|
|
173
173
|
'*' = [
|
|
174
174
|
'* __pycache__',
|
|
175
175
|
'*.py[co]',
|
|
176
|
-
'static_code_analysis.txt',
|
|
177
176
|
]
|
|
178
177
|
|
|
179
178
|
[tool.bumpversion]
|
|
180
|
-
current_version = "0.11.0"
|
|
179
|
+
current_version = "0.11.0.dev0"
|
|
181
180
|
commit = true
|
|
182
181
|
tag = true
|
|
183
182
|
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<candidate>\d+))?'
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
"""Tests for the ``tasks.py`` file."""
|
|
2
|
-
|
|
3
1
|
from tasks import _get_minimum_versions
|
|
4
2
|
|
|
5
3
|
|
|
@@ -16,7 +14,7 @@ def test_get_minimum_versions():
|
|
|
16
14
|
"pandas>=1.2.0,<2;python_version<'3.10'",
|
|
17
15
|
"pandas>=1.3.0,<2;python_version>='3.10'",
|
|
18
16
|
'humanfriendly>=8.2,<11',
|
|
19
|
-
'pandas @ git+https://github.com/pandas-dev/pandas.git@master'
|
|
17
|
+
'pandas @ git+https://github.com/pandas-dev/pandas.git@master#egg=pandas'
|
|
20
18
|
]
|
|
21
19
|
|
|
22
20
|
# Run
|
|
@@ -26,12 +24,12 @@ def test_get_minimum_versions():
|
|
|
26
24
|
# Assert
|
|
27
25
|
expected_versions_39 = [
|
|
28
26
|
'numpy==1.20.0',
|
|
29
|
-
'git+https://github.com/pandas-dev/pandas.git@master#egg=pandas',
|
|
27
|
+
'pandas @ git+https://github.com/pandas-dev/pandas.git@master#egg=pandas',
|
|
30
28
|
'humanfriendly==8.2',
|
|
31
29
|
]
|
|
32
30
|
expected_versions_310 = [
|
|
33
31
|
'numpy==1.23.3',
|
|
34
|
-
'git+https://github.com/pandas-dev/pandas.git@master#egg=pandas',
|
|
32
|
+
'pandas @ git+https://github.com/pandas-dev/pandas.git@master#egg=pandas',
|
|
35
33
|
'humanfriendly==8.2',
|
|
36
34
|
]
|
|
37
35
|
|
|
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
|