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.

Files changed (38) hide show
  1. {copulas-0.11.0 → copulas-0.11.0.dev0}/PKG-INFO +1 -1
  2. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/__init__.py +1 -1
  3. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/PKG-INFO +1 -1
  4. {copulas-0.11.0 → copulas-0.11.0.dev0}/pyproject.toml +1 -2
  5. {copulas-0.11.0 → copulas-0.11.0.dev0}/tests/test_tasks.py +3 -5
  6. {copulas-0.11.0 → copulas-0.11.0.dev0}/LICENSE +0 -0
  7. {copulas-0.11.0 → copulas-0.11.0.dev0}/README.md +0 -0
  8. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/__init__.py +0 -0
  9. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/base.py +0 -0
  10. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/clayton.py +0 -0
  11. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/frank.py +0 -0
  12. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/gumbel.py +0 -0
  13. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/independence.py +0 -0
  14. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/bivariate/utils.py +0 -0
  15. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/datasets.py +0 -0
  16. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/__init__.py +0 -0
  17. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/base.py +0 -0
  18. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/gaussian.py +0 -0
  19. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/tree.py +0 -0
  20. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/multivariate/vine.py +0 -0
  21. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/optimize/__init__.py +0 -0
  22. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/__init__.py +0 -0
  23. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/base.py +0 -0
  24. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/beta.py +0 -0
  25. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gamma.py +0 -0
  26. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gaussian.py +0 -0
  27. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/gaussian_kde.py +0 -0
  28. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/log_laplace.py +0 -0
  29. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/selection.py +0 -0
  30. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/student_t.py +0 -0
  31. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/truncated_gaussian.py +0 -0
  32. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/univariate/uniform.py +0 -0
  33. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas/visualization.py +0 -0
  34. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/SOURCES.txt +0 -0
  35. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/dependency_links.txt +0 -0
  36. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/requires.txt +0 -0
  37. {copulas-0.11.0 → copulas-0.11.0.dev0}/copulas.egg-info/top_level.txt +0 -0
  38. {copulas-0.11.0 → copulas-0.11.0.dev0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: copulas
3
- Version: 0.11.0
3
+ Version: 0.11.0.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
@@ -4,7 +4,7 @@
4
4
 
5
5
  __author__ = 'DataCebo, Inc.'
6
6
  __email__ = 'info@sdv.dev'
7
- __version__ = '0.11.0'
7
+ __version__ = '0.11.0.dev0'
8
8
 
9
9
  import contextlib
10
10
  import importlib
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: copulas
3
- Version: 0.11.0
3
+ Version: 0.11.0.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
@@ -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