Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"matplotlib>=3.6.0,<4;python_version>='3.10'",
"numpy>=1.20.0,<2;python_version<'3.10'",
"numpy>=1.23.3,<2;python_version>='3.10'",
"pandas>=1.1.3,<2;python_version<'3.10'",
"pandas>=1.3.4,<2;python_version>='3.10' and python_version<'3.11'",
"pandas>=1.5.0,<2;python_version>='3.11'",
"pandas>=1.1.3;python_version<'3.10'",
"pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'",
"pandas>=1.5.0;python_version>='3.11'",
"scipy>=1.5.4,<2;python_version<'3.10'",
"scipy>=1.9.2,<2;python_version>='3.10'",
]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/multivariate/test_gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def test_sample_random_state(self):
result = instance.sample(5)

# Check
pd.testing.assert_frame_equal(result, expected_result, check_less_precise=True)
pd.testing.assert_frame_equal(result, expected_result)

def test_to_dict(self):
"""To_dict returns the parameters to replicate the copula."""
Expand Down