Skip to content

Commit

Permalink
pyproject + fix
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jun 24, 2024
1 parent 8761f37 commit 321c8af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion copulas/multivariate/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def _sort_tau_by_y(self, y):
"""
# first column is the variable of interest
tau_y = self.tau_matrix[:, y]
tau_y[y] = np.NaN
tau_y[y] = np.nan

temp = np.empty([self.n_nodes, 3])
temp[:, 0] = np.arange(self.n_nodes)
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ license = { text = 'BSL-1.1' }
requires-python = '>=3.8,<3.13'
readme = 'README.md'
dependencies = [
"numpy>=1.21.0,<2.0.0;python_version<'3.10'",
"numpy>=1.23.3,<2.0.0;python_version>='3.10' and python_version<'3.12'",
"numpy>=1.26.0,<2.0.0;python_version>='3.12'",
"numpy>=1.21.0;python_version<'3.10'",
"numpy>=1.23.3;python_version>='3.10' and python_version<'3.12'",
"numpy>=1.26.0;python_version>='3.12'",
"pandas>=1.4.0;python_version<'3.11'",
"pandas>=1.5.0;python_version>='3.11' and python_version<'3.12'",
"pandas>=2.1.1;python_version>='3.12'",
Expand Down

0 comments on commit 321c8af

Please sign in to comment.