Skip to content

Commit

Permalink
REV: integrate.qmc_quad: delay release to SciPy 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mdhaber authored and tylerjereddy committed Jan 3, 2023
1 parent 34cdf05 commit 3e0ae1a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion scipy/integrate/__init__.py
Expand Up @@ -20,7 +20,6 @@
quadrature -- Integrate with given tolerance using Gaussian quadrature
romberg -- Integrate func using Romberg integration
newton_cotes -- Weights and error coefficient for Newton-Cotes integration
qmc_quad -- N-D integration using Quasi-Monte Carlo quadrature
IntegrationWarning -- Warning on issues during integration
AccuracyWarning -- Warning on issues during quadrature integration
Expand Down
2 changes: 1 addition & 1 deletion scipy/integrate/_quadrature.py
Expand Up @@ -19,7 +19,7 @@
__all__ = ['fixed_quad', 'quadrature', 'romberg', 'romb',
'trapezoid', 'trapz', 'simps', 'simpson',
'cumulative_trapezoid', 'cumtrapz', 'newton_cotes',
'qmc_quad', 'AccuracyWarning']
'AccuracyWarning']


# Make See Also linking for our local copy work properly
Expand Down
4 changes: 2 additions & 2 deletions scipy/integrate/tests/test_quadrature.py
Expand Up @@ -6,8 +6,8 @@

from scipy.integrate import (quadrature, romberg, romb, newton_cotes,
cumulative_trapezoid, cumtrapz, trapz, trapezoid,
quad, simpson, simps, fixed_quad, AccuracyWarning,
qmc_quad)
quad, simpson, simps, fixed_quad, AccuracyWarning)
from scipy.integrate._quadrature import qmc_quad
from scipy import stats, special as sc


Expand Down

0 comments on commit 3e0ae1a

Please sign in to comment.