{ "info": { "author": "", "author_email": "Nico Schl\u00f6mer ", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", "License :: Other/Proprietary License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "

\n \"quadpy\"\n

Your one-stop shop for numerical integration in Python.

\n

\n\n[![PyPi Version](https://img.shields.io/pypi/v/quadpy.svg?style=flat-square)](https://pypi.org/project/quadpy/)\n[![PyPI pyversions](https://img.shields.io/pypi/pyversions/quadpy.svg?style=flat-square)](https://pypi.org/project/quadpy/)\n[![GitHub stars](https://img.shields.io/github/stars/nschloe/quadpy.svg?style=flat-square&logo=github&label=Stars&logoColor=white)](https://github.com/nschloe/quadpy)\n[![PyPi downloads](https://img.shields.io/pypi/dm/quadpy.svg?style=flat-square)](https://pypistats.org/packages/quadpy)\n\n[![Discord](https://img.shields.io/static/v1?logo=discord&label=chat&message=on%20discord&color=7289da&style=flat-square)](https://discord.gg/hnTJ5MRX2Y)\n[![awesome](https://img.shields.io/badge/awesome-yes-brightgreen.svg?style=flat-square)](https://github.com/nschloe/quadpy)\n\nMore than 1500 numerical integration schemes for\n[line segments](#line-segment-c1),\n[circles](#circle-u2),\n[disks](#disk-s2),\n[triangles](#triangle-t2),\n[quadrilaterals](#quadrilateral-c2),\n[spheres](#sphere-u3),\n[balls](#ball-s3),\n[tetrahedra](#tetrahedron-t3),\n[hexahedra](#hexahedra-c3),\n[wedges](#wedge-w3),\n[pyramids](#pyramid-p3),\n[n-spheres](#n-sphere-un),\n[n-balls](#n-ball-sn),\n[n-cubes](#n-cube-cn),\n[n-simplices](#n-simplex-tn),\n[the 1D half-space with weight functions exp(-r)](#1d-half-space-with-weight-function-exp-r-e1r),\n[the 2D space with weight functions exp(-r)](#2d-space-with-weight-function-exp-r-e2r),\n[the 3D space with weight functions exp(-r)](#3d-space-with-weight-function-exp-r-e3r),\n[the nD space with weight functions exp(-r)](#nd-space-with-weight-function-exp-r-enr),\n[the 1D space with weight functions exp(-r2)](#1d-space-with-weight-function-exp-r2-e1r2),\n[the 2D space with weight functions exp(-r2)](#2d-space-with-weight-function-exp-r2-e2r2),\n[the 3D space with weight functions exp(-r2)](#3d-space-with-weight-function-exp-r2-e3r2),\nand\n[the nD space with weight functions exp(-r2)](#nd-space-with-weight-function-exp-r2-enr2),\nfor fast integration of real-, complex-, and vector-valued functions.\n\nFor example, to numerically integrate any function over any given interval, install\nquadpy [from the Python Package Index](https://pypi.org/project/quadpy/) with\n\n```\npip install quadpy\n```\n\nand do\n\n```python\nimport numpy as np\nimport quadpy\n\n\ndef f(x):\n return np.sin(x) - x\n\n\nval, err = quadpy.quad(f, 0.0, 6.0)\n```\n\nThis is like\n[scipy](https://docs.scipy.org/doc/scipy/reference/generated/scipy.integrate.quad.html)\nwith the addition that quadpy handles complex-, vector-, matrix-valued integrands,\nand \"intervals\" in spaces of arbitrary dimension.\n\nTo integrate over a _triangle_, do\n\n```python\nimport numpy as np\nimport quadpy\n\n\ndef f(x):\n return np.sin(x[0]) * np.sin(x[1])\n\n\ntriangle = np.array([[0.0, 0.0], [1.0, 0.0], [0.7, 0.5]])\n\n# get a \"good\" scheme of degree 10\nscheme = quadpy.t2.get_good_scheme(10)\nval = scheme.integrate(f, triangle)\n```\n\nMost domains have `get_good_scheme(degree)`. If you would like to use a particular\nscheme, you can pick one from the dictionary `quadpy.t2.schemes`.\n\nAll schemes have\n\n\n\n```python\nscheme.points\nscheme.weights\nscheme.degree\nscheme.source\nscheme.test_tolerance\n\nscheme.show()\nscheme.integrate(\n # ...\n)\n```\n\nand many have\n\n\n\n```python\nscheme.points_symbolic\nscheme.weights_symbolic\n```\n\nquadpy is fully vectorized, so if you like to compute the integral of a function on many\ndomains at once, you can provide them all in one `integrate()` call, e.g.,\n\n\n\n```python\n# shape (3, 5, 2), i.e., (corners, num_triangles, xy_coords)\ntriangles = np.stack(\n [\n [[0.0, 0.0], [1.0, 0.0], [0.0, 1.0]],\n [[1.2, 0.6], [1.3, 0.7], [1.4, 0.8]],\n [[26.0, 31.0], [24.0, 27.0], [33.0, 28]],\n [[0.1, 0.3], [0.4, 0.4], [0.7, 0.1]],\n [[8.6, 6.0], [9.4, 5.6], [7.5, 7.4]],\n ],\n axis=-2,\n)\n```\n\nThe same goes for functions with vectorized output, e.g.,\n\n```python\ndef f(x):\n return [np.sin(x[0]), np.sin(x[1])]\n```\n\nMore examples under [test/examples_test.py](test/examples_test.py).\n\nRead more about the dimensionality of the input/output arrays [in the\nwiki](https://github.com/nschloe/quadpy/wiki#dimensionality-of-input-and-output-arrays).\n\nAdvanced topics:\n\n- [Adaptive quadrature](https://github.com/nschloe/quadpy/wiki/Adaptive-quadrature)\n- [Creating your own Gauss scheme](https://github.com/nschloe/quadpy/wiki/Creating-your-own-Gauss-quadrature-in-two-simple-steps)\n- [tanh-sinh quadrature](https://github.com/nschloe/tanh_sinh/)\n\n## Schemes\n\n### Line segment (_C1_)\n\n\n\n- [Chebyshev-Gauss](src/quadpy/c1/_chebyshev_gauss.py) (type 1 and 2, arbitrary degree)\n- [Clenshaw-Curtis](src/quadpy/c1/_clenshaw_curtis.py) (arbitrary degree)\n- [Fej\u00e9r](src/quadpy/c1/_fejer.py) (type 1 and 2, arbitrary degree)\n- [Gauss-Jacobi](src/quadpy/c1/_gauss_jacobi.py) (arbitrary degree)\n- [Gauss-Legendre](src/quadpy/c1/_gauss_legendre.py) (arbitrary degree)\n- [Gauss-Lobatto](src/quadpy/c1/_gauss_lobatto.py) (arbitrary degree)\n- [Gauss-Kronrod](src/quadpy/c1/_gauss_kronrod.py) (arbitrary degree)\n- [Gauss-Patterson](src/quadpy/c1/_gauss_patterson.py) (9 nested schemes up to degree 767)\n- [Gauss-Radau](src/quadpy/c1/_gauss_radau.py) (arbitrary degree)\n- [Newton-Cotes](src/quadpy/c1/_newton_cotes.py) (open and closed, arbitrary degree)\n\n[See\nhere](https://github.com/nschloe/quadpy/wiki/Creating-your-own-Gauss-quadrature-in-two-simple-steps)\nfor how to generate Gauss formulas for your own weight functions.\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.c1.gauss_patterson(5)\nscheme.show()\nval = scheme.integrate(lambda x: np.exp(x), [0.0, 1.0])\n```\n\n### 1D half-space with weight function exp(-r) (_E1r_)\n\n\n\n- [Generalized Gauss-Laguerre](src/quadpy/e1r/_gauss_laguerre.py)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e1r.gauss_laguerre(5, alpha=0)\nscheme.show()\nval = scheme.integrate(lambda x: x**2)\n```\n\n### 1D space with weight function exp(-r2) (_E1r2_)\n\n\n\n- [Gauss-Hermite](src/quadpy/e1r2/_gauss_hermite.py) (arbitrary degree)\n- [Genz-Keister](src/quadpy/e1r2/_genz_keister.py) (1996, 8 nested schemes up to degree 67)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e1r2.gauss_hermite(5)\nscheme.show()\nval = scheme.integrate(lambda x: x**2)\n```\n\n### Circle (_U2_)\n\n\n\n- [Krylov](src/quadpy/u2/_krylov.py) (1959, arbitrary degree)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.u2.get_good_scheme(7)\nscheme.show()\nval = scheme.integrate(lambda x: np.exp(x[0]), [0.0, 0.0], 1.0)\n```\n\n### Triangle (_T2_)\n\n\n\nApart from the classical centroid, vertex, and seven-point schemes we have\n\n- [Hammer-Marlowe-Stroud](src/quadpy/t2/_hammer_marlowe_stroud.py) (1956, 5 schemes up to\n degree 5)\n- [Albrecht-Collatz](src/quadpy/t2/_albrecht_collatz.py) (1958, degree 3)\n- [Stroud](src/quadpy/t2/_stroud.py) (1971, conical product scheme of degree 7)\n- [Franke](src/quadpy/t2/_franke.py) (1971, 2 schemes of degree 7)\n- [Strang-Fix/Cowper](src/quadpy/t2/_strang_fix_cowper) (1973, 10 schemes up to degree\n 7),\n- [Lyness-Jespersen](src/quadpy/t2/_lyness_jespersen.py) (1975, 21 schemes up to degree 11,\n two of which are used in [TRIEX](https://doi.org/10.1145/356068.356070)),\n- [Lether](src/quadpy/t2/_lether.py) (1976, degree 2n-2, arbitrary n, not symmetric),\n- [Hillion](src/quadpy/t2/_hillion.py) (1977, 10 schemes up to degree 3),\n- [Laursen-Gellert](src/quadpy/t2/_laursen_gellert) (1978, 17 schemes up to degree 10),\n- [CUBTRI](src/quadpy/t2/_cubtri) (Laurie, 1982, degree 8),\n- [Dunavant](src/quadpy/t2/_dunavant) (1985, 20 schemes up to degree 20),\n- [Cools-Haegemans](src/quadpy/t2/_cools_haegemans) (1987, degrees 8 and 11),\n- [Gatermann](src/quadpy/t2/_gatermann) (1988, degree 7)\n- [Berntsen-Espelid](src/quadpy/t2/_berntsen_espelid) (1990, 4 schemes of degree 13, the\n first one being [DCUTRI](https://doi.org/10.1145/131766.131772)),\n- [Liu-Vinokur](src/quadpy/t2/_liu_vinokur.py) (1998, 13 schemes up to degree 5),\n- [Griener-Schmid](src/quadpy/t2/_griener_schmid), (1999, 2 schemes of degree 6),\n- [Walkington](src/quadpy/t2/_walkington.py) (2000, 5 schemes up to degree 5),\n- [Wandzura-Xiao](src/quadpy/t2/_wandzura_xiao) (2003, 6 schemes up to degree 30),\n- [Taylor-Wingate-Bos](src/quadpy/t2/_taylor_wingate_bos) (2005, 5 schemes up to degree\n 14),\n- [Zhang-Cui-Liu](src/quadpy/t2/_zhang_cui_liu) (2009, 3 schemes up to degree 20),\n- [Xiao-Gimbutas](src/quadpy/t2/_xiao_gimbutas) (2010, 50 schemes up to degree 50),\n- [Vioreanu-Rokhlin](src/quadpy/t2/_vioreanu_rokhlin) (2014, 20 schemes up to degree 62),\n- [Williams-Shunn-Jameson](src/quadpy/t2/_williams_shunn_jameson) (2014, 8 schemes up to\n degree 12),\n- [Witherden-Vincent](src/quadpy/t2/_witherden_vincent) (2015, 19 schemes up to degree 20),\n- [Papanicolopulos](src/quadpy/t2/_papanicolopulos) (2016, 27 schemes up to degree 25),\n- [all schemes for the n-simplex](#n-simplex-tn).\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.t2.get_good_scheme(12)\nscheme.show()\nval = scheme.integrate(lambda x: np.exp(x[0]), [[0.0, 0.0], [1.0, 0.0], [0.5, 0.7]])\n```\n\n### Disk (_S2_)\n\n\n\n- [Radon](src/quadpy/s2/_radon.py) (1948, degree 5)\n- [Peirce](src/quadpy/s2/_peirce_1956.py) (1956, 3 schemes up to degree 11)\n- [Peirce](src/quadpy/s2/_peirce_1957.py) (1957, arbitrary degree)\n- [Albrecht-Collatz](src/quadpy/s2/_albrecht_collatz.py) (1958, degree 3)\n- [Hammer-Stroud](src/quadpy/s2/_hammer_stroud.py) (1958, 8 schemes up to degree 15)\n- [Albrecht](src/quadpy/s2/_albrecht.py) (1960, 8 schemes up to degree 17)\n- [Mysovskih](src/quadpy/s2/_mysovskih.py) (1964, 3 schemes up to degree 15)\n- [Rabinowitz-Richter](src/quadpy/s2/_rabinowitz_richter) (1969, 6 schemes up to degree 15)\n- [Lether](src/quadpy/s2/_lether.py) (1971, arbitrary degree)\n- [Piessens-Haegemans](src/quadpy/s2/_piessens_haegemans/) (1975, 1 scheme of degree 9)\n- [Haegemans-Piessens](src/quadpy/s2/_haegemans_piessens/) (1977, degree 9)\n- [Cools-Haegemans](src/quadpy/s2/_cools_haegemans/) (1985, 4 schemes up to degree 13)\n- [Wissmann-Becker](src/quadpy/s2/_wissmann_becker.py) (1986, 3 schemes up to degree 8)\n- [Kim-Song](src/quadpy/s2/_kim_song/) (1997, 15 schemes up to degree 17)\n- [Cools-Kim](src/quadpy/s2/_cools_kim/) (2000, 3 schemes up to degree 21)\n- [Luo-Meng](src/quadpy/s2/_luo_meng/) (2007, 6 schemes up to degree 17)\n- [all schemes from the n-ball](#n-ball-sn)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.s2.get_good_scheme(6)\nscheme.show()\nval = scheme.integrate(lambda x: np.exp(x[0]), [0.0, 0.0], 1.0)\n```\n\n### Quadrilateral (_C2_)\n\n\n\n- [Maxwell](src/quadpy/c2/_maxwell.py) (1890, degree 7)\n- [Burnside](src/quadpy/c2/_burnside.py) (1908, degree 5)\n- [Irwin](src/quadpy/c2/_irwin.py) (1923, 3 schemes up to degree 5)\n- [Tyler](src/quadpy/c2/_tyler.py) (1953, 3 schemes up to degree 7)\n- [Hammer-Stroud](src/quadpy/c2/_hammer_stroud.py) (1958, 3 schemes up to degree 7)\n- [Albrecht-Collatz](src/quadpy/c2/_albrecht_collatz.py) (1958, 4 schemes up to degree 5)\n- [Miller](src/quadpy/c2/_miller.py) (1960, degree 1, degree 11 for harmonic integrands)\n- [Meister](src/quadpy/c2/_meister.py) (1966, degree 7)\n- [Phillips](src/quadpy/c2/_phillips.py) (1967, degree 7)\n- [Rabinowitz-Richter](src/quadpy/c2/_rabinowitz_richter) (1969, 6 schemes up to degree 15)\n- [Franke](src/quadpy/c2/_franke.py) (1971, 10 schemes up to degree 9)\n- [Piessens-Haegemans](src/quadpy/c2/_piessens_haegemans) (1975, 2 schemes of degree 9)\n- [Haegemans-Piessens](src/quadpy/c2/_haegemans_piessens) (1977, degree 7)\n- [Schmid](src/quadpy/c2/_schmid) (1978, 3 schemes up to degree 6)\n- [Cools-Haegemans](src/quadpy/c2/_cools_haegemans_1985/) (1985, 6 schemes up to degree 17)\n- [Dunavant](src/quadpy/c2/_dunavant) (1985, 11 schemes up to degree 19)\n- [Morrow-Patterson](src/quadpy/c2/_morrow_patterson) (1985, 2 schemes up to degree 20, single precision)\n- [Cohen-Gismalla](src/quadpy/c2/_cohen_gismalla.py), (1986, 2 schemes up to degree 3)\n- [Wissmann-Becker](src/quadpy/c2/_wissmann_becker) (1986, 6 schemes up to degree 8)\n- [Cools-Haegemans](src/quadpy/c2/_cools_haegemans_1988) (1988, 2 schemes up to degree 13)\n- [Waldron](src/quadpy/c2/_waldron.py) (1994, infinitely many schemes of degree 3)\n- [Sommariva](src/quadpy/c2/_sommariva) (2012, 55 schemes up to degree 55)\n- [Witherden-Vincent](src/quadpy/c2/_witherden_vincent) (2015, 11 schemes up to degree 21)\n- products of line segment schemes\n- [all schemes from the n-cube](#n-cube-cn)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.c2.get_good_scheme(7)\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n [[[0.0, 0.0], [1.0, 0.0]], [[0.0, 1.0], [1.0, 1.0]]],\n)\n```\n\nThe points are specified in an array of shape (2, 2, ...) such that `arr[0][0]`\nis the lower left corner, `arr[1][1]` the upper right. If your c2\nhas its sides aligned with the coordinate axes, you can use the convenience\nfunction\n\n\n\n```python\nquadpy.c2.rectangle_points([x0, x1], [y0, y1])\n```\n\nto generate the array.\n\n### 2D space with weight function exp(-r) (_E2r_)\n\n\n\n- [Stroud-Secrest](src/quadpy/e2r/_stroud_secrest.py) (1963, 2 schemes up to degree 7)\n- [Rabinowitz-Richter](src/quadpy/e2r/_rabinowitz_richter) (1969, 4 schemes up to degree 15)\n- [Stroud](src/quadpy/e2r/_stroud.py) (1971, degree 4)\n- [Haegemans-Piessens](src/quadpy/e2r/_haegemans_piessens/) (1977, 2 schemes up to degree 9)\n- [Cools-Haegemans](src/quadpy/e2r/_cools_haegemans/) (1985, 3 schemes up to degree 13)\n- [all schemes from the nD space with weight function exp(-r)](#nd-space-with-weight-function-exp-r-enr)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e2r.get_good_scheme(5)\nscheme.show()\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n### 2D space with weight function exp(-r2) (_E2r2_)\n\n\n\n- [Stroud-Secrest](src/quadpy/e2r2/_stroud_secrest.py) (1963, 2 schemes up to degree 7)\n- [Rabinowitz-Richter](src/quadpy/e2r2/_rabinowitz_richter/) (1969, 5 schemes up to degree 15)\n- [Stroud](src/quadpy/e2r2/_stroud.py) (1971, 3 schemes up to degree 7)\n- [Haegemans-Piessens](src/quadpy/e2r2/_haegemans_piessens/) (1977, 2 schemes of degree 9)\n- [Cools-Haegemans](src/quadpy/e2r2/_cools_haegemans/) (1985, 3 schemes up to degree 13)\n- [all schemes from the nD space with weight function exp(-r2)](#nd-space-with-weight-function-exp-r2-enr2)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e2r2.get_good_scheme(3)\nscheme.show()\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n### Sphere (_U3_)\n\n\n\n- [Albrecht-Collatz](src/quadpy/u3/_albrecht_collatz.py) (1958, 5 schemes up to degree 7)\n- [McLaren](src/quadpy/u3/_mclaren.py) (1963, 10 schemes up to degree 14)\n- [Lebedev](src/quadpy/u3/_lebedev/) (1976, 34 schemes up to degree 131)\n- [Ba\u017eant-Oh](src/quadpy/u3/_bazant_oh/) (1986, 3 schemes up to degree 13)\n- [Heo-Xu](src/quadpy/u3/_heo_xu/) (2001, 27 schemes up to degree 39)\n- [Fliege-Maier](src/quadpy/u3/_fliege_maier/) (2007, 4 schemes up to degree 4,\n single-precision)\n- [all schemes from the n-sphere](#n-sphere-un)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.u3.get_good_scheme(19)\n# scheme.show()\nval = scheme.integrate(lambda x: np.exp(x[0]), [0.0, 0.0, 0.0], 1.0)\n```\n\nIntegration on the sphere can also be done for functions defined in spherical\ncoordinates:\n\n```python\nimport numpy as np\nimport quadpy\n\n\ndef f(theta_phi):\n theta, phi = theta_phi\n return np.sin(phi) ** 2 * np.sin(theta)\n\n\nscheme = quadpy.u3.get_good_scheme(19)\nval = scheme.integrate_spherical(f)\n```\n\n### Ball (_S3_)\n\n\n\n- [Ditkin](src/quadpy/s3/_ditkin.py) (1948, 3 schemes up to degree 7)\n- [Hammer-Stroud](src/quadpy/s3/_hammer_stroud.py) (1958, 6 schemes up to degree 7)\n- [Mysovskih](src/quadpy/s3/_mysovskih.py) (1964, degree 7)\n- [Stroud](src/quadpy/s3/_stroud.py) (1971, 2 schemes up to degree 14)\n- [all schemes from the n-ball](#n-ball-sn)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.s3.get_good_scheme(4)\n# scheme.show()\nval = scheme.integrate(lambda x: np.exp(x[0]), [0.0, 0.0, 0.0], 1.0)\n```\n\n### Tetrahedron (_T3_)\n\n\n\n- [Hammer-Marlowe-Stroud](src/quadpy/t3/_hammer_marlowe_stroud.py)\n (1956, 3 schemes up to degree 3, also appearing in [Hammer-Stroud](https://doi.org/10.1090/S0025-5718-1958-0102176-6))\n- [Stroud](src/quadpy/t3/_stroud.py) (1971, degree 7)\n- [Yu](src/quadpy/t3/_yu) (1984, 5 schemes up to degree 6)\n- [Keast](src/quadpy/t3/_keast) (1986, 10 schemes up to degree 8)\n- [Beckers-Haegemans](src/quadpy/t3/_beckers_haegemans) (1990, degrees 8 and 9)\n- [Gatermann](src/quadpy/t3/_gatermann) (1992, degree 5)\n- [Liu-Vinokur](src/quadpy/t3/_liu_vinokur.py) (1998, 14 schemes up to degree 5)\n- [Walkington](src/quadpy/t3/_walkington/) (2000, 6 schemes up to degree 7)\n- [Zhang-Cui-Liu](src/quadpy/t3/_zhang_cui_liu/) (2009, 2 schemes up to degree 14)\n- [Xiao-Gimbutas](src/quadpy/t3/_xiao_gimbutas/) (2010, 15 schemes up to degree 15)\n- [Shunn-Ham](src/quadpy/t3/_shunn_ham/) (2012, 6 schemes up to degree 7)\n- [Vioreanu-Rokhlin](src/quadpy/t3/_vioreanu_rokhlin/) (2014, 10 schemes up to degree 13)\n- [Williams-Shunn-Jameson](src/quadpy/t3/_williams_shunn_jameson/) (2014, 1 scheme with\n degree 9)\n- [Witherden-Vincent](src/quadpy/t3/_witherden_vincent/) (2015, 9 schemes up to degree 10)\n- [Ja\u015bkowiec-Sukumar](src/quadpy/t3/_jaskowiec_sukumar/) (2020, 21 schemes up to degree 20)\n- [all schemes for the n-simplex](#n-simplex-tn).\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.t3.get_good_scheme(5)\n# scheme.show()\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n [[0.0, 0.0, 0.0], [1.0, 0.0, 0.0], [0.5, 0.7, 0.0], [0.3, 0.9, 1.0]],\n)\n```\n\n### Hexahedron (_C3_)\n\n\n\n- [Sadowsky](src/quadpy/c3/_sadowsky.py) (1940, degree 5)\n- [Tyler](src/quadpy/c3/_tyler.py) (1953, 2 schemes up to degree 5)\n- [Hammer-Wymore](src/quadpy/c3/_hammer_wymore.py) (1957, degree 7)\n- [Albrecht-Collatz](src/quadpy/c3/_albrecht_collatz.py) (1958, degree 3)\n- [Hammer-Stroud](src/quadpy/c3/_hammer_stroud.py) (1958, 6 schemes up to degree 7)\n- [Mustard-Lyness-Blatt](src/quadpy/c3/_mustard_lyness_blatt.py) (1963, 6 schemes up to degree 5)\n- [Stroud](src/quadpy/c3/_stroud_1967.py) (1967, degree 5)\n- [Sarma-Stroud](src/quadpy/c3/_sarma_stroud.py) (1969, degree 7)\n- [Witherden-Vincent](src/quadpy/c3/_witherden_vincent/) (2015, 7 schemes up to degree degree 11)\n- [all schemes from the n-cube](#n-cube-cn)\n- Product schemes derived from line segment schemes\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.c3.product(quadpy.c1.newton_cotes_closed(3))\n# scheme.show()\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n quadpy.c3.cube_points([0.0, 1.0], [-0.3, 0.4], [1.0, 2.1]),\n)\n```\n\n### Pyramid (_P3_)\n\n\n\n- [Felippa](src/quadpy/p3/_felippa.py) (2004, 9 schemes up to degree 5)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.p3.felippa_5()\n\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n [\n [0.0, 0.0, 0.0],\n [1.0, 0.0, 0.0],\n [0.5, 0.7, 0.0],\n [0.3, 0.9, 0.0],\n [0.0, 0.1, 1.0],\n ],\n)\n```\n\n### Wedge (_W3_)\n\n\n\n- [Felippa](src/quadpy/w3/_felippa.py) (2004, 6 schemes up to degree 6)\n- [Kubatko-Yeager-Maggi](src/quadpy/w3/_kubatko_yeager_maggi.py) (2013, 21 schemes up to\n degree 9)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\nscheme = quadpy.w3.felippa_3()\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n [\n [[0.0, 0.0, 0.0], [1.0, 0.0, 0.0], [0.5, 0.7, 0.0]],\n [[0.0, 0.0, 1.0], [1.0, 0.0, 1.0], [0.5, 0.7, 1.0]],\n ],\n)\n```\n\n### 3D space with weight function exp(-r) (_E3r_)\n\n\n\n- [Stroud-Secrest](src/quadpy/e3r/_stroud_secrest.py) (1963, 5 schemes up to degree 7)\n- [all schemes from the nD space with weight function\n exp(-r)](#nd-space-with-weight-function-exp-r-enr)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e3r.get_good_scheme(5)\n# scheme.show()\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n### 3D space with weight function exp(-r2) (_E3r2_)\n\n\n\n- [Stroud-Secrest](src/quadpy/e3r/_stroud_secrest.py) (1963, 7 schemes up to degree 7)\n- [Stroud](src/quadpy/e3r/_stroud.py) (1971, scheme of degree 14)\n- [all schemes from the nD space with weight function\n exp(-r2)](#nd-space-with-weight-function-exp-r2-enr2)\n\nExample:\n\n```python\nimport quadpy\n\nscheme = quadpy.e3r2.get_good_scheme(6)\n# scheme.show()\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n### n-Simplex (_Tn_)\n\n- [Lauffer](src/quadpy/tn/_lauffer.py) (1955, 5 schemes up to degree 5)\n- [Hammer-Stroud](src/quadpy/tn/_hammer_stroud.py) (1956, 3 schemes up to degree 3)\n- [Stroud](src/quadpy/tn/_stroud_1964.py) (1964, degree 3)\n- [Stroud](src/quadpy/tn/_stroud_1966.py) (1966, 7 schemes of degree 3)\n- [Stroud](src/quadpy/tn/_stroud_1969.py) (1969, degree 5)\n- [Silvester](src/quadpy/tn/_silvester.py) (1970, arbitrary degree),\n- [Grundmann-M\u00f6ller](src/quadpy/tn/_grundmann_moeller.py) (1978, arbitrary degree)\n- [Walkington](src/quadpy/tn/_walkington.py) (2000, 5 schemes up to degree 7)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\ndim = 4\nscheme = quadpy.tn.grundmann_moeller(dim, 3)\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n np.array(\n [\n [0.0, 0.0, 0.0, 0.0],\n [1.0, 2.0, 0.0, 0.0],\n [0.0, 1.0, 0.0, 0.0],\n [0.0, 3.0, 1.0, 0.0],\n [0.0, 0.0, 4.0, 1.0],\n ]\n ),\n)\n```\n\n### n-Sphere (_Un_)\n\n- [Stroud](src/quadpy/un/_stroud_1967.py) (1967, degree 7)\n- [Stroud](src/quadpy/un/_stroud_1969.py) (1969, 3 <= n <= 16, degree 11)\n- [Stroud](src/quadpy/un/_stroud.py) (1971, 6 schemes up to degree 5)\n- [Dobrodeev](src/quadpy/un/_dobrodeev_1978.py) (1978, n >= 2, degree 5)\n- [Mysovskikh](src/quadpy/un/_mysovskikh.py) (1980, 2 schemes up to degree 5)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\ndim = 4\nscheme = quadpy.un.dobrodeev_1978(dim)\nval = scheme.integrate(lambda x: np.exp(x[0]), np.zeros(dim), 1.0)\n```\n\n### n-Ball (_Sn_)\n\n- [Stroud](src/quadpy/sn/_stroud_1957.py) (1957, degree 2)\n- [Hammer-Stroud](src/quadpy/sn/_hammer_stroud.py) (1958, 2 schemes up to degree 5)\n- [Stroud](src/quadpy/sn/_stroud_1966.py) (1966, 4 schemes of degree 5)\n- [Stroud](src/quadpy/sn/_stroud_1967_5.py) (1967, 4 <= n <= 7, 2 schemes of degree 5)\n- [Stroud](src/quadpy/sn/_stroud_1967_7.py) (1967, n >= 3, 3 schemes of degree 7)\n- [Stenger](src/quadpy/sn/_stenger.py) (1967, 6 schemes up to degree 11)\n- [McNamee-Stenger](src/quadpy/sn/_mcnamee_stenger.py) (1967, 6 schemes up to degree 9)\n- [Dobrodeev](src/quadpy/sn/_dobrodeev_1970.py) (1970, n >= 3, degree 7)\n- [Dobrodeev](src/quadpy/sn/_dobrodeev_1978.py) (1978, 2 <= n <= 20, degree 5)\n- [Stoyanova](src/quadpy/sn/_stoyanova.py) (1997, n >= 5, degree 7)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\ndim = 4\nscheme = quadpy.sn.dobrodeev_1970(dim)\nval = scheme.integrate(lambda x: np.exp(x[0]), np.zeros(dim), 1.0)\n```\n\n### n-Cube (_Cn_)\n\n- [Ewing](src/quadpy/cn/_ewing.py) (1941, degree 3)\n- [Tyler](src/quadpy/cn/_tyler.py) (1953, degree 3)\n- [Stroud](src/quadpy/cn/_stroud_1957.py) (1957, 2 schemes up to degree 3)\n- [Hammer-Stroud](src/quadpy/cn/_hammer_stroud.py) (1958, degree 5)\n- [Mustard-Lyness-Blatt](src/quadpy/cn/_mustard_lyness_blatt.py) (1963, degree 5)\n- [Thacher](src/quadpy/cn/_thacher.py) (1964, degree 2)\n- [Stroud](src/quadpy/cn/_stroud_1966.py) (1966, 4 schemes of degree 5)\n- [Phillips](src/quadpy/cn/_phillips.py) (1967, degree 7)\n- [McNamee-Stenger](src/quadpy/cn/_mcnamee_stenger.py) (1967, 6 schemes up to degree 9)\n- [Stroud](src/quadpy/cn/_stroud_1968.py) (1968, degree 5)\n- [Dobrodeev](src/quadpy/cn/_dobrodeev_1970.py) (1970, n >= 5, degree 7)\n- [Dobrodeev](src/quadpy/cn/_dobrodeev_1978.py) (1978, n >= 2, degree 5)\n- [Cools-Haegemans](src/quadpy/cn/_cools_haegemans.py) (1994, 2 schemes up to degree 5)\n\nExample:\n\n```python\nimport numpy as np\nimport quadpy\n\ndim = 4\nscheme = quadpy.cn.stroud_cn_3_3(dim)\nval = scheme.integrate(\n lambda x: np.exp(x[0]),\n quadpy.cn.ncube_points([0.0, 1.0], [0.1, 0.9], [-1.0, 1.0], [-1.0, -0.5]),\n)\n```\n\n### nD space with weight function exp(-r) (_Enr_)\n\n- [Stroud-Secrest](src/quadpy/enr/_stroud_secrest.py) (1963, 4 schemes up to degree 5)\n- [McNamee-Stenger](src/quadpy/enr/_mcnamee_stenger.py) (1967, 6 schemes up to degree 9)\n- [Stroud](src/quadpy/enr/_stroud.py) (1971, 2 schemes up to degree 5)\n\nExample:\n\n```python\nimport quadpy\n\ndim = 4\nscheme = quadpy.enr.stroud_enr_5_4(dim)\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n### nD space with weight function exp(-r2) (_Enr2_)\n\n- [Stroud-Secrest](src/quadpy/enr2/_stroud_secrest.py) (1963, 4 schemes up to degree 5)\n- [McNamee-Stenger](src/quadpy/enr2/_mcnamee_stenger.py) (1967, 6 schemes up to degree 9)\n- [Stroud](src/quadpy/enr2/_stroud_1967_5.py) (1967, 2 schemes of degree 5)\n- [Stroud](src/quadpy/enr2/_stroud_1967_7.py) (1967, 3 schemes of degree 7)\n- [Stenger](src/quadpy/enr2/_stenger.py) (1971, 6 schemes up to degree 11, varying dimensionality restrictions)\n- [Stroud](src/quadpy/enr2/_stroud.py) (1971, 5 schemes up to degree 5)\n- [Phillips](src/quadpy/enr2/_phillips.py) (1980, degree 5)\n- [Cools-Haegemans](src/quadpy/enr2/_cools_haegemans.py) (1994, 3 schemes up to degree 7)\n- [Lu-Darmofal](src/quadpy/enr2/_lu_darmofal.py) (2004, degree 5)\n- [Xiu](src/quadpy/enr2/_xiu.py) (2008, degree 2)\n\nExample:\n\n```python\nimport quadpy\n\ndim = 4\nscheme = quadpy.enr2.stroud_enr2_5_2(dim)\nval = scheme.integrate(lambda x: x[0] ** 2)\n```\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/sigma-py/quadpy", "keywords": "mathematics,physics,engineering,quadrature,cubature,integration,numerical integration", "license": "", "maintainer": "", "maintainer_email": "", "name": "quadpy", "package_url": "https://pypi.org/project/quadpy/", "platform": null, "project_url": "https://pypi.org/project/quadpy/", "project_urls": { "Homepage": "https://github.com/sigma-py/quadpy", "Issues": "https://github.com/sigma-py/quadpy/issues" }, "release_url": "https://pypi.org/project/quadpy/0.16.14/", "requires_dist": [ "x21 (>=0.2.6)", "numpy (>=1.20.0)", "matplotlib", "ndim", "orthopy (<0.10,>=0.8.50)", "scipy", "sympy", "vtk ; (python_version < \"3.10\") and extra == 'all'", "vtk ; (python_version < \"3.10\") and extra == 'plot'" ], "requires_python": ">=3.7", "summary": "Numerical integration, quadrature for various domains", "version": "0.16.14", "yanked": false, "yanked_reason": null }, "last_serial": 13557170, "releases": { "0.10.0": [ { "comment_text": "", "digests": { "md5": "3f5eae389dd0f32ddf71de5127b48ecf", "sha256": "335d2bf8ff90b7ba43492cf18a2d3f35dbcd174fce1882514b112cceea5851b3" }, "downloads": -1, "filename": "quadpy-0.10.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3f5eae389dd0f32ddf71de5127b48ecf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 329261, "upload_time": "2017-08-08T08:50:19", "upload_time_iso_8601": "2017-08-08T08:50:19.381501Z", "url": "https://files.pythonhosted.org/packages/ba/7c/d935b5d53eecc5b0b451113f866e50d3654541bc7e494b938a6f132caee0/quadpy-0.10.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "fa14fe5ea0b27b0a9a3dc025ef0ce105", "sha256": "0a9e1422ee2bfb430e2a0b225b92ac6bb6a87650b312bc586396a4750ca6b01f" }, "downloads": -1, "filename": "quadpy-0.10.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fa14fe5ea0b27b0a9a3dc025ef0ce105", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 373069, "upload_time": "2017-08-16T10:45:31", "upload_time_iso_8601": "2017-08-16T10:45:31.224802Z", "url": "https://files.pythonhosted.org/packages/43/a9/a9d1035b074d8737f874b8f7a030b4599eadbffde901bd26a219ac694093/quadpy-0.10.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "4b3bfb15f47bb2e6409e9d0a67be4425", "sha256": "96b999f979abe6f0afd700eacfda7b41dcc0476ba72590dcdf6f9f923d964444" }, "downloads": -1, "filename": "quadpy-0.10.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4b3bfb15f47bb2e6409e9d0a67be4425", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 394502, "upload_time": "2017-08-18T16:44:27", "upload_time_iso_8601": "2017-08-18T16:44:27.579588Z", "url": "https://files.pythonhosted.org/packages/a2/0b/bfdbeb2e0446495257c3623002dea165e6ea3cf98373e7cd7a678eab9976/quadpy-0.10.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "c6ce961a327beaf5630db9459b928b82", "sha256": "dd29b8fd463fd86f36b66b2e9cb7ca47da7fb3e5abbb3980cf03a1218e02247a" }, "downloads": -1, "filename": "quadpy-0.10.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c6ce961a327beaf5630db9459b928b82", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 403031, "upload_time": "2017-08-28T11:27:59", "upload_time_iso_8601": "2017-08-28T11:27:59.680406Z", "url": "https://files.pythonhosted.org/packages/9e/1e/136cfaa7369751c11b62eb0f8fdca6ed03485cf3ff23a24615960d872167/quadpy-0.10.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.4": [ { "comment_text": "", "digests": { "md5": "14242555cc6fd264ea510a17a73c7fcc", "sha256": "a2d0e3d1f1e069f1b3489712f58bf83dcdc47c15be883de7014544626ff88345" }, "downloads": -1, "filename": "quadpy-0.10.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "14242555cc6fd264ea510a17a73c7fcc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 427057, "upload_time": "2017-09-05T19:51:34", "upload_time_iso_8601": "2017-09-05T19:51:34.875064Z", "url": "https://files.pythonhosted.org/packages/c8/b9/78212724f705510b5f8ac82e3b9a5cf2989684bc44de54483acf7df4db6e/quadpy-0.10.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.5": [ { "comment_text": "", "digests": { "md5": "9339c6d5d0387d58687effee40e79f4f", "sha256": "5661f44d780155a6a2af11578e9c7b78b7d2caf2b336f60b134b626a4b7decc9" }, "downloads": -1, "filename": "quadpy-0.10.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9339c6d5d0387d58687effee40e79f4f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 434434, "upload_time": "2017-09-25T17:47:27", "upload_time_iso_8601": "2017-09-25T17:47:27.329776Z", "url": "https://files.pythonhosted.org/packages/0d/c0/c66427afa556a7f36bd9274726d05221f7c537128b0855ee98bd28c1ea87/quadpy-0.10.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.6": [ { "comment_text": "", "digests": { "md5": "affdd260c2b20efdd4ff70416d3db499", "sha256": "50d828c5dfbd9bbc9fc58a30a4e17e2b25f168b0269ab4d93f5611d1f178a652" }, "downloads": -1, "filename": "quadpy-0.10.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "affdd260c2b20efdd4ff70416d3db499", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 435429, "upload_time": "2017-10-05T22:44:11", "upload_time_iso_8601": "2017-10-05T22:44:11.791057Z", "url": "https://files.pythonhosted.org/packages/79/5a/9914303c130b47338ecd2b96d1739792c0a1874a71d4addc9cdf3759782c/quadpy-0.10.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.10.7": [ { "comment_text": "", "digests": { "md5": "1833b094e56f728437ec9bfe66494e3d", "sha256": "ec487f21f41f1cd7372f267d05d1d0754f56b90662ccc47460ee4ac69479fe8d" }, "downloads": -1, "filename": "quadpy-0.10.7-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "1833b094e56f728437ec9bfe66494e3d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 436013, "upload_time": "2017-11-17T08:52:56", "upload_time_iso_8601": "2017-11-17T08:52:56.141824Z", "url": "https://files.pythonhosted.org/packages/07/44/b0f01f12aeb2f9eb2afcada9165f3cd2a4556c91075a974ebc6824ef0b2b/quadpy-0.10.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "7fb20994a8b47e819675149d6302525a", "sha256": "5a5ac2179c84c60ca45efa1cfc9e09e60303fee537490dd67c44ca0129e6411c" }, "downloads": -1, "filename": "quadpy-0.11.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7fb20994a8b47e819675149d6302525a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 438025, "upload_time": "2017-12-11T19:34:05", "upload_time_iso_8601": "2017-12-11T19:34:05.510567Z", "url": "https://files.pythonhosted.org/packages/48/90/b65d4f98fd8de1ffb1361d2b543c7b138bfd0801bd3129ec396f3e09a5b2/quadpy-0.11.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "3c47856de95e1405ce27474bc014d561", "sha256": "da81499b4ce41ae0f4a2bf79f435a8fd2b3a109b20716bb2470aaa6ad87f1d35" }, "downloads": -1, "filename": "quadpy-0.11.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "3c47856de95e1405ce27474bc014d561", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 437933, "upload_time": "2017-12-13T00:20:35", "upload_time_iso_8601": "2017-12-13T00:20:35.542255Z", "url": "https://files.pythonhosted.org/packages/d3/2a/4be9e678ccfaa2cb1f703733474c01309bf7e488e4341efec4d3146c2ea3/quadpy-0.11.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.11.2": [ { "comment_text": "", "digests": { "md5": "2d465841fa15096df4c9fe76cd0935db", "sha256": "3c204bcecbf2290687276d041c23f74f86cc0111b3a0fae28489b68c910ab9f5" }, "downloads": -1, "filename": "quadpy-0.11.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2d465841fa15096df4c9fe76cd0935db", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 456121, "upload_time": "2018-01-15T12:49:37", "upload_time_iso_8601": "2018-01-15T12:49:37.903740Z", "url": "https://files.pythonhosted.org/packages/98/fc/0e177be52ef7582d83c6ad2de4008cd28b2e6dc24381f6c7f4fc9af560d3/quadpy-0.11.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.11.3": [ { "comment_text": "", "digests": { "md5": "63917f0a9812e7405443efd55c371a88", "sha256": "f554f74ebaec8fe74084a7d612012dff7403db9782f9819c2655a28ff9abb4fd" }, "downloads": -1, "filename": "quadpy-0.11.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "63917f0a9812e7405443efd55c371a88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 456148, "upload_time": "2018-01-22T16:02:28", "upload_time_iso_8601": "2018-01-22T16:02:28.571389Z", "url": "https://files.pythonhosted.org/packages/33/98/8ac48f5963f438416bb5bcd11f3e04d7362684d629e41261880c5fdd85c7/quadpy-0.11.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.11.4": [ { "comment_text": "", "digests": { "md5": "179e4358cef02b509596ff8701e1c6d8", "sha256": "d3254af37588b95aa115834ba58459e75948b0bd39850584ee5592643410fe1e" }, "downloads": -1, "filename": "quadpy-0.11.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "179e4358cef02b509596ff8701e1c6d8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 446206, "upload_time": "2018-05-03T11:07:18", "upload_time_iso_8601": "2018-05-03T11:07:18.830706Z", "url": "https://files.pythonhosted.org/packages/3e/f4/ff4e0241a6c62a77ee031d5b602db9aae7503f6b6258a04dd0fcd709d989/quadpy-0.11.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "815ecd359ad53177a745e8d041908f36", "sha256": "8edd8b1cc1c34d2c76f04dac4597ea1844b3e476f35cf9a79b2b3a47089cbca0" }, "downloads": -1, "filename": "quadpy-0.11.4.tar.gz", "has_sig": false, "md5_digest": "815ecd359ad53177a745e8d041908f36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 379278, "upload_time": "2018-05-03T11:07:22", "upload_time_iso_8601": "2018-05-03T11:07:22.011235Z", "url": "https://files.pythonhosted.org/packages/3b/86/1150a9fbd4d724a2710d68626368d2183fd251fbea5102e8f5f20fe01e61/quadpy-0.11.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "98f9a7f0219530d7813ab787b1954817", "sha256": "668f84d8602ae12f3bc75d04854dab129b2a1ddf0bba00edde4644e0f12f4e6d" }, "downloads": -1, "filename": "quadpy-0.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98f9a7f0219530d7813ab787b1954817", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 447858, "upload_time": "2018-06-06T12:08:35", "upload_time_iso_8601": "2018-06-06T12:08:35.654888Z", "url": "https://files.pythonhosted.org/packages/84/07/e76237d2e9f287f93e0ce3ebf570d112eb382a8b64cd0e81aa71e41ef573/quadpy-0.12.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "817c7b8c1efb2b5686b6fc1d9daaa88f", "sha256": "1e5006b4f2e22b6e24d427749b35ae48c25971b0f717ddc5825c0f7c99625da5" }, "downloads": -1, "filename": "quadpy-0.12.0.tar.gz", "has_sig": false, "md5_digest": "817c7b8c1efb2b5686b6fc1d9daaa88f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347609, "upload_time": "2018-06-06T12:09:01", "upload_time_iso_8601": "2018-06-06T12:09:01.360266Z", "url": "https://files.pythonhosted.org/packages/f5/2d/19cbcfd363101bc1b69d7684a509e525f9eb5b21349b424536e10da73a07/quadpy-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.1": [ { "comment_text": "", "digests": { "md5": "e9495c747044d13c12e4fb134b83b322", "sha256": "d0c0d0d663bb75984153ada00cea1edded53feafb801ade5ba1a6dd87350a870" }, "downloads": -1, "filename": "quadpy-0.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e9495c747044d13c12e4fb134b83b322", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 451524, "upload_time": "2018-06-26T23:06:31", "upload_time_iso_8601": "2018-06-26T23:06:31.496295Z", "url": "https://files.pythonhosted.org/packages/6e/90/893d8a6612eec6be2345f9c42a9fb13a7a0214000aa297a81ec0d50e098b/quadpy-0.12.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c1ea8641f22308edd07a7935a8b4f1f3", "sha256": "8855c2e3f1354498fecdd2f0e1221ad1ed62788be27d6539dbbb136e05b8f756" }, "downloads": -1, "filename": "quadpy-0.12.1.tar.gz", "has_sig": false, "md5_digest": "c1ea8641f22308edd07a7935a8b4f1f3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348210, "upload_time": "2018-06-26T23:06:34", "upload_time_iso_8601": "2018-06-26T23:06:34.755233Z", "url": "https://files.pythonhosted.org/packages/33/5d/384e43a7118ce761e018ff6fc182e4850294f092a7c867fdc61315067d9c/quadpy-0.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.10": [ { "comment_text": "", "digests": { "md5": "22102ec65c5e99f974f54a426cb42d99", "sha256": "5ecc7e40cd731451a9817408ed196ea70182d326878522fbb5d2d16993a168bc" }, "downloads": -1, "filename": "quadpy-0.12.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "22102ec65c5e99f974f54a426cb42d99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 742390, "upload_time": "2018-11-26T11:04:21", "upload_time_iso_8601": "2018-11-26T11:04:21.636572Z", "url": "https://files.pythonhosted.org/packages/5b/9b/ee88dba4c32c72f31f98d8c328268c509be63a79e7d133c73bc114106a7b/quadpy-0.12.10-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2345b76cc78b8b6ffa6b089b88a616ba", "sha256": "f5c6d7623c52545f25e6becec97404f424afbb06d1479321625a70a3ed100d9c" }, "downloads": -1, "filename": "quadpy-0.12.10.tar.gz", "has_sig": false, "md5_digest": "2345b76cc78b8b6ffa6b089b88a616ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 613086, "upload_time": "2018-11-26T11:04:26", "upload_time_iso_8601": "2018-11-26T11:04:26.411658Z", "url": "https://files.pythonhosted.org/packages/1e/b3/3ecce187907b35feef7a68a5ba747a7071825409cfa96aaa48ca679fe548/quadpy-0.12.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.11": [ { "comment_text": "", "digests": { "md5": "8bb13a94c204dbcf6146044d4514e7fd", "sha256": "fb7acdf9653e487aa098c71751c7c93251bdb0b62393121074bb65543cb5063b" }, "downloads": -1, "filename": "quadpy-0.12.11-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8bb13a94c204dbcf6146044d4514e7fd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 754231, "upload_time": "2019-06-04T20:13:35", "upload_time_iso_8601": "2019-06-04T20:13:35.180406Z", "url": "https://files.pythonhosted.org/packages/15/54/e7143c82c474d7bbda63a07d0a6a82a7e1d6f570cc727c0f73fc331e342c/quadpy-0.12.11-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6fed4b601655c147a5b01796ddd41b46", "sha256": "c767fd97822e399000b0c6ab9ad0328fe05de828494d0634cfe2950e4109970d" }, "downloads": -1, "filename": "quadpy-0.12.11.tar.gz", "has_sig": false, "md5_digest": "6fed4b601655c147a5b01796ddd41b46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 617082, "upload_time": "2019-06-04T20:13:38", "upload_time_iso_8601": "2019-06-04T20:13:38.592232Z", "url": "https://files.pythonhosted.org/packages/9d/5a/f3ab19871ddf64bea9cd6e9de37567f678323752d1fba4ff8a137b9b0a18/quadpy-0.12.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.2": [ { "comment_text": "", "digests": { "md5": "d2de18dec1e93f81c55b405342820d0a", "sha256": "e0667ac53798834e2b3073f50ce5cd9cf26552717006bc194168a3170c9a1c78" }, "downloads": -1, "filename": "quadpy-0.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d2de18dec1e93f81c55b405342820d0a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 451610, "upload_time": "2018-07-01T09:53:55", "upload_time_iso_8601": "2018-07-01T09:53:55.768594Z", "url": "https://files.pythonhosted.org/packages/14/d4/e311250fbb4c149efd7ca2eb3ba0333f7214171f1acde3c2b26b010c8041/quadpy-0.12.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0d36d1542533c3d69b86ecf45b738ce", "sha256": "692d81482f8ae796f50856136439796fc9e6715f02f92178a93e4576aa5fd194" }, "downloads": -1, "filename": "quadpy-0.12.2.tar.gz", "has_sig": false, "md5_digest": "a0d36d1542533c3d69b86ecf45b738ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348376, "upload_time": "2018-07-01T09:53:58", "upload_time_iso_8601": "2018-07-01T09:53:58.577799Z", "url": "https://files.pythonhosted.org/packages/cd/a8/d309636848f6322d3056e3ce7400c17c23aabe4236c812979fd35f96f1dc/quadpy-0.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.3": [ { "comment_text": "", "digests": { "md5": "71aa4c3f473324c9323a221db6ef8fc4", "sha256": "2e6ae2b1257de54afe16f96eafb1f72fa99d0c0bdc998ce2a87bd97a8ff411ff" }, "downloads": -1, "filename": "quadpy-0.12.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "71aa4c3f473324c9323a221db6ef8fc4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 451724, "upload_time": "2018-07-12T10:45:51", "upload_time_iso_8601": "2018-07-12T10:45:51.392543Z", "url": "https://files.pythonhosted.org/packages/d3/f5/c4d36b2e71f6e487d8241b516fb7a7359199a0379ec3dae2efab6c8ff78b/quadpy-0.12.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0a55eb95caf7a7fe5856cad97ef61885", "sha256": "659be3ff4cbdadfb5b246e59a09a6f01c6cb657f70bd07489b58da835acc1d9d" }, "downloads": -1, "filename": "quadpy-0.12.3.tar.gz", "has_sig": false, "md5_digest": "0a55eb95caf7a7fe5856cad97ef61885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 348576, "upload_time": "2018-07-12T10:45:54", "upload_time_iso_8601": "2018-07-12T10:45:54.434471Z", "url": "https://files.pythonhosted.org/packages/40/a8/6e71c9cbc2925ede1ce5a09f48379d3d5178118862ac15af4f6c2f678533/quadpy-0.12.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.4": [ { "comment_text": "", "digests": { "md5": "924a082275783aae2d622dbe5929ba51", "sha256": "d7c70da7807b010b72e0b728f4edce7129d6565330906d6d745534f3cfc5c955" }, "downloads": -1, "filename": "quadpy-0.12.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "924a082275783aae2d622dbe5929ba51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 451672, "upload_time": "2018-09-07T05:54:04", "upload_time_iso_8601": "2018-09-07T05:54:04.564182Z", "url": "https://files.pythonhosted.org/packages/3f/e5/53592264646c29683c2641aa41e19d36db13757820cd581960911b8957d5/quadpy-0.12.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af80015ce4e12b0a691ab7de7a8558d6", "sha256": "60b7dbb725f286707dd98dcfdc71f2eed38a8738de980207a420904b163d2d5b" }, "downloads": -1, "filename": "quadpy-0.12.4.tar.gz", "has_sig": false, "md5_digest": "af80015ce4e12b0a691ab7de7a8558d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347759, "upload_time": "2018-09-07T05:54:11", "upload_time_iso_8601": "2018-09-07T05:54:11.966706Z", "url": "https://files.pythonhosted.org/packages/50/47/c674af4429eb130cb4d458a8b92adba51fc4e809da0f8438e4b7547b5f13/quadpy-0.12.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.5": [ { "comment_text": "", "digests": { "md5": "6e6bc5abd925bbbabecea190d7e86045", "sha256": "dfc868ac72a9d5dd8d9a539715f60c07d2650fc79fe0c340747fdeff9dd8c0a0" }, "downloads": -1, "filename": "quadpy-0.12.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6e6bc5abd925bbbabecea190d7e86045", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 451783, "upload_time": "2018-09-27T06:54:54", "upload_time_iso_8601": "2018-09-27T06:54:54.037506Z", "url": "https://files.pythonhosted.org/packages/eb/1f/c0359171c7ff102f6a2a5e69f7751f90b2883f0bbd97a6ad4c40ff183fc8/quadpy-0.12.5-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e84dcab40293b1d0a5378f0c0ef95b5d", "sha256": "7248e74195e3e076c8ec9fe057ded84a8de414e89a68b48f553e0b5c63a9b79c" }, "downloads": -1, "filename": "quadpy-0.12.5.tar.gz", "has_sig": false, "md5_digest": "e84dcab40293b1d0a5378f0c0ef95b5d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 347848, "upload_time": "2018-09-27T06:54:56", "upload_time_iso_8601": "2018-09-27T06:54:56.865402Z", "url": "https://files.pythonhosted.org/packages/ae/eb/45bfedfbab01f7d12ae5b82cdab2412b031eaa1b1fcde38962b8f2638dfc/quadpy-0.12.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.6": [ { "comment_text": "", "digests": { "md5": "7a83f4045202f1b63103271ed72327e6", "sha256": "dc36e21c35b7a42d19c1137b7391f64564d66f9de3dfb5181f1506c6aa2b23cd" }, "downloads": -1, "filename": "quadpy-0.12.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7a83f4045202f1b63103271ed72327e6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 462316, "upload_time": "2018-10-10T06:21:35", "upload_time_iso_8601": "2018-10-10T06:21:35.689234Z", "url": "https://files.pythonhosted.org/packages/8a/5d/fa79a7a69618a1b04186b1de8021af4f37c38920b0edefcc0bc89a76ccb9/quadpy-0.12.6-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "510dc1b34d26bde9453ed19044f8e41d", "sha256": "ef74ab0e85b4a09f84560f715a7697da4e5e026afb6fadaff410bf46bafa5047" }, "downloads": -1, "filename": "quadpy-0.12.6.tar.gz", "has_sig": false, "md5_digest": "510dc1b34d26bde9453ed19044f8e41d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358257, "upload_time": "2018-10-10T06:21:38", "upload_time_iso_8601": "2018-10-10T06:21:38.262112Z", "url": "https://files.pythonhosted.org/packages/6b/08/ef32ae7dc11aca40a365d6020142c088143a752227a800fa435505ff3df6/quadpy-0.12.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.7": [ { "comment_text": "", "digests": { "md5": "aa06faf0ee38558dc51a93e53246ba5c", "sha256": "5c42588defc3c3172189e93493b2a222f6574ba2a352fa9afc109e27c2a08256" }, "downloads": -1, "filename": "quadpy-0.12.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa06faf0ee38558dc51a93e53246ba5c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 469169, "upload_time": "2018-11-23T16:23:14", "upload_time_iso_8601": "2018-11-23T16:23:14.076783Z", "url": "https://files.pythonhosted.org/packages/c6/83/d81049f7c6713036192adcea3eada9f61f4067d6d350014c8c4e819e15f7/quadpy-0.12.7-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aae64cbb9b429ea51abb74613cfefaec", "sha256": "3f9670a73bd2721361ac79e47782e5b5677dab566c448dcd8686204d0f41f698" }, "downloads": -1, "filename": "quadpy-0.12.7.tar.gz", "has_sig": false, "md5_digest": "aae64cbb9b429ea51abb74613cfefaec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 361830, "upload_time": "2018-11-23T16:23:17", "upload_time_iso_8601": "2018-11-23T16:23:17.879327Z", "url": "https://files.pythonhosted.org/packages/69/b7/214d7963307465abbf04582e563e4196ae9166f347fcc6b79a960196430f/quadpy-0.12.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.8": [ { "comment_text": "", "digests": { "md5": "025bd1d6cb8f7ee65f9f700ab9153cbb", "sha256": "5b744d78f0e610708af4f57e1ae1b68a4dd20aa111816f3b9fb966ae8acbe68f" }, "downloads": -1, "filename": "quadpy-0.12.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "025bd1d6cb8f7ee65f9f700ab9153cbb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 499487, "upload_time": "2018-11-23T16:58:54", "upload_time_iso_8601": "2018-11-23T16:58:54.905816Z", "url": "https://files.pythonhosted.org/packages/83/a8/56ee3f205b7892f19da2f6cfaeada76cdf0fc9a03d5418e8f86acc706a85/quadpy-0.12.8-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30f1cd75d833b1b216e02f9ed34a67ee", "sha256": "9319623e83ac24e54e0725e4c1aab676399cb41a36686b12cbf1b52d4908e3d1" }, "downloads": -1, "filename": "quadpy-0.12.8.tar.gz", "has_sig": false, "md5_digest": "30f1cd75d833b1b216e02f9ed34a67ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 391792, "upload_time": "2018-11-23T16:58:58", "upload_time_iso_8601": "2018-11-23T16:58:58.668701Z", "url": "https://files.pythonhosted.org/packages/66/29/018ff687b0ac4ec13f02f3cd383667112bab34e66459f9f038afa47b3bd3/quadpy-0.12.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.9": [ { "comment_text": "", "digests": { "md5": "e1e603c487a535a6ad75993547f36b55", "sha256": "fbc331dabe203166600096a7e81a47dd9425e79ddf86c3d13c78ff6d4e7327a4" }, "downloads": -1, "filename": "quadpy-0.12.9-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e1e603c487a535a6ad75993547f36b55", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 501007, "upload_time": "2018-11-23T19:35:21", "upload_time_iso_8601": "2018-11-23T19:35:21.980581Z", "url": "https://files.pythonhosted.org/packages/6c/1f/6b34fe0772ded6facc2292765b085f4fd8166e34cba8707b7672b818e1dc/quadpy-0.12.9-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "84af6520383bfb68e5f46ce86d8a600e", "sha256": "1bdd189ca5e8651f6910cf5dae6675557ce300cf21ca45d81e848d6d19a57d52" }, "downloads": -1, "filename": "quadpy-0.12.9.tar.gz", "has_sig": false, "md5_digest": "84af6520383bfb68e5f46ce86d8a600e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 393286, "upload_time": "2018-11-23T19:35:25", "upload_time_iso_8601": "2018-11-23T19:35:25.880858Z", "url": "https://files.pythonhosted.org/packages/78/95/fe87e6039bd9e634497d81476f9d17caa093d4f0cdd60568ef726b842d80/quadpy-0.12.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "69e88f5f91ad2e696fc0f483af778939", "sha256": "6ad05c21f859cf808bc3067b6bf951daf6ace95d79ed7a76a1892b8e1ed2fd36" }, "downloads": -1, "filename": "quadpy-0.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "69e88f5f91ad2e696fc0f483af778939", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 761347, "upload_time": "2019-07-02T10:05:17", "upload_time_iso_8601": "2019-07-02T10:05:17.454124Z", "url": "https://files.pythonhosted.org/packages/19/a5/f513713c2414838fb30fe59d5602274eaea20a0494d30865bd82c9c8490b/quadpy-0.13.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae741a196a0c35cc8a631e3b74779391", "sha256": "4971cd472843afc70300005051259f08c07fb5b56abcba57e455306d4fcf6961" }, "downloads": -1, "filename": "quadpy-0.13.0.tar.gz", "has_sig": false, "md5_digest": "ae741a196a0c35cc8a631e3b74779391", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 628691, "upload_time": "2019-07-02T10:05:20", "upload_time_iso_8601": "2019-07-02T10:05:20.482742Z", "url": "https://files.pythonhosted.org/packages/6d/62/0fee397b2006789b5206fc9ac1b3b1536d4450d3e05b518fddd2dd8369b2/quadpy-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.1": [ { "comment_text": "", "digests": { "md5": "558268909135cb1fe3923f134c8002e6", "sha256": "3fd96f8f0da90f235a0720ae743d6ebefbf27e542cbc9455c54b3ee2378514e3" }, "downloads": -1, "filename": "quadpy-0.13.1-py3-none-any.whl", "has_sig": false, "md5_digest": "558268909135cb1fe3923f134c8002e6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 761641, "upload_time": "2019-08-06T14:26:25", "upload_time_iso_8601": "2019-08-06T14:26:25.118861Z", "url": "https://files.pythonhosted.org/packages/4a/8f/1dd657e8fd1444b52a26ed3fdbb5349464b28692d964925287ce236f0411/quadpy-0.13.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a0d196db6472ce249c29b1ba06983b75", "sha256": "8f6d69727d000c1f9e4fdb8a392aa48a53ce55c77d178ea8cf1639c1acfedf66" }, "downloads": -1, "filename": "quadpy-0.13.1.tar.gz", "has_sig": false, "md5_digest": "a0d196db6472ce249c29b1ba06983b75", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 629037, "upload_time": "2019-08-06T14:26:29", "upload_time_iso_8601": "2019-08-06T14:26:29.445893Z", "url": "https://files.pythonhosted.org/packages/cb/b9/0d805dee3ec742b7af36c52bef50f75da54f246b5ce24cf53be68d00bddf/quadpy-0.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.2": [ { "comment_text": "", "digests": { "md5": "7d8adebf3b647e04926bbbd0c9e654af", "sha256": "1b6a4ef48498db7e1de2d4adfb97a73637d3ddb06ba2bc8e814b73813c75ce07" }, "downloads": -1, "filename": "quadpy-0.13.2-py3-none-any.whl", "has_sig": false, "md5_digest": "7d8adebf3b647e04926bbbd0c9e654af", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 761668, "upload_time": "2019-08-08T14:54:46", "upload_time_iso_8601": "2019-08-08T14:54:46.941774Z", "url": "https://files.pythonhosted.org/packages/d9/1c/174e49deeabd73a82b9a804f35683277a4001590ff6a597775ac97dd7e53/quadpy-0.13.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "317916063e0cf5b9ab9e301ed7d64c72", "sha256": "aa1fab96395f70da034efbaa2505aa5b8c2329da9dba24da1289b7738378c930" }, "downloads": -1, "filename": "quadpy-0.13.2.tar.gz", "has_sig": false, "md5_digest": "317916063e0cf5b9ab9e301ed7d64c72", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 628784, "upload_time": "2019-08-08T14:54:51", "upload_time_iso_8601": "2019-08-08T14:54:51.336133Z", "url": "https://files.pythonhosted.org/packages/bd/11/99575b360ddf1022f3cff0264d83117bfc2b76a7fcbb9add4990f5358865/quadpy-0.13.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.3": [ { "comment_text": "", "digests": { "md5": "ebda2d161d72152f336e0e03c3f2e4ed", "sha256": "2a0a29adb9d6a91b78fb7f97e043bea6a68a8ea2cb89c2089f443106159901c1" }, "downloads": -1, "filename": "quadpy-0.13.3-py3-none-any.whl", "has_sig": false, "md5_digest": "ebda2d161d72152f336e0e03c3f2e4ed", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 761635, "upload_time": "2019-10-22T10:44:03", "upload_time_iso_8601": "2019-10-22T10:44:03.061858Z", "url": "https://files.pythonhosted.org/packages/e9/71/30e07282e2bee35a43c6b49587c2627359a12bddb31128479506cf190583/quadpy-0.13.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aec5a796e6264ec67a228af7188085d9", "sha256": "d8491c9b6d197da011b0277ed0244161d7dfcb668ffc5b9a289cf332d3899ca8" }, "downloads": -1, "filename": "quadpy-0.13.3.tar.gz", "has_sig": false, "md5_digest": "aec5a796e6264ec67a228af7188085d9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 645465, "upload_time": "2019-10-22T10:44:07", "upload_time_iso_8601": "2019-10-22T10:44:07.838486Z", "url": "https://files.pythonhosted.org/packages/13/e3/a5b1d756701474460891168e43eb145d86e8e6941e98b9651f91675b2de6/quadpy-0.13.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.4": [ { "comment_text": "", "digests": { "md5": "29b3cfc045af030a039afccf652cd286", "sha256": "b498afdaa032d2b74d3e4a31cd7270501052cf3802d176a036c7e4a1cb75fc6f" }, "downloads": -1, "filename": "quadpy-0.13.4-py3-none-any.whl", "has_sig": false, "md5_digest": "29b3cfc045af030a039afccf652cd286", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 761649, "upload_time": "2019-10-30T20:37:28", "upload_time_iso_8601": "2019-10-30T20:37:28.258781Z", "url": "https://files.pythonhosted.org/packages/28/47/32759af00f4613fc3b3a44049b8a3b3d70062759a1ca04ad9bc57520f532/quadpy-0.13.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e82cf9229e8ce032b7dbde45f7c3f019", "sha256": "30343b49efb4a3d4ed4be9e820442a6f9a3880fe4d850c99997498de06b2453c" }, "downloads": -1, "filename": "quadpy-0.13.4.tar.gz", "has_sig": false, "md5_digest": "e82cf9229e8ce032b7dbde45f7c3f019", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 645477, "upload_time": "2019-10-30T20:37:32", "upload_time_iso_8601": "2019-10-30T20:37:32.624120Z", "url": "https://files.pythonhosted.org/packages/ad/38/802560fdd72f6be08b7b5400ff1a91170f4bc0167ddc87deb4ff6f36d66a/quadpy-0.13.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.5": [ { "comment_text": "", "digests": { "md5": "74711cfc1b59e74f333b30cf97618c39", "sha256": "5a80dac8fec0745be17b9d88a8e0af41575c23f6ceabcd35e4bff1dad3b6c1d9" }, "downloads": -1, "filename": "quadpy-0.13.5-py3-none-any.whl", "has_sig": false, "md5_digest": "74711cfc1b59e74f333b30cf97618c39", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 762110, "upload_time": "2019-11-04T12:34:35", "upload_time_iso_8601": "2019-11-04T12:34:35.190498Z", "url": "https://files.pythonhosted.org/packages/6e/6f/e5e25e21d30d36bf2ecafcc4472b34209836b9d7896ac1b9d2d271c9dfdc/quadpy-0.13.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "11ee9df8b152cd2b64b5f8435da8d4c9", "sha256": "057243ab6c5f76d83a7e7e354a8173d205ec850a14119f06bf10a75e53a733c7" }, "downloads": -1, "filename": "quadpy-0.13.5.tar.gz", "has_sig": false, "md5_digest": "11ee9df8b152cd2b64b5f8435da8d4c9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 629756, "upload_time": "2019-11-04T12:34:39", "upload_time_iso_8601": "2019-11-04T12:34:39.809721Z", "url": "https://files.pythonhosted.org/packages/37/a0/b49b1651c1466624a57e063dc0e2367c3cb98986638b2302a45a2a0f139d/quadpy-0.13.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.6": [ { "comment_text": "", "digests": { "md5": "d8eda8f08120d5c5b5186aa2c1456fab", "sha256": "f52a8f7528b680184be2122292232523acfccbf33b34f8434f8cd7921649f49a" }, "downloads": -1, "filename": "quadpy-0.13.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d8eda8f08120d5c5b5186aa2c1456fab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3", "size": 762186, "upload_time": "2019-12-04T09:58:11", "upload_time_iso_8601": "2019-12-04T09:58:11.360228Z", "url": "https://files.pythonhosted.org/packages/7c/45/2e43dcb971bb5ae17e19a50a6f2e4690d87e28706e7a13e144eea690d72a/quadpy-0.13.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e1cad1fff526f70d470b77db30676150", "sha256": "56e8aa3f6c56028aa08f2513af6133102323d2796c2ff89964ff0642a3329aaa" }, "downloads": -1, "filename": "quadpy-0.13.6.tar.gz", "has_sig": false, "md5_digest": "e1cad1fff526f70d470b77db30676150", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3", "size": 629898, "upload_time": "2019-12-04T09:58:15", "upload_time_iso_8601": "2019-12-04T09:58:15.164259Z", "url": "https://files.pythonhosted.org/packages/3e/ca/002259b42673e1de3b045d4b5c131b10fce0408135e17edce1f4e2a57258/quadpy-0.13.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "27d84b9cd80f5c9125a060f295f74916", "sha256": "3b18b8311b378ab46ec320bc86a2548532fdbad71354d113b95fae2d1d098623" }, "downloads": -1, "filename": "quadpy-0.14.0-py3-none-any.whl", "has_sig": false, "md5_digest": "27d84b9cd80f5c9125a060f295f74916", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 762860, "upload_time": "2020-01-30T17:34:34", "upload_time_iso_8601": "2020-01-30T17:34:34.438138Z", "url": "https://files.pythonhosted.org/packages/37/d9/50f87dcdbcc21ccd703c42beb3825c052d0f960c1e1b35fd50632e4d56bd/quadpy-0.14.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "30c857d4c14a159e796d767c398d696b", "sha256": "d323f9db56eded26548daa4a68fabed9113e022cc49e9a839b3e97e97fef4e58" }, "downloads": -1, "filename": "quadpy-0.14.0.tar.gz", "has_sig": false, "md5_digest": "30c857d4c14a159e796d767c398d696b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 631668, "upload_time": "2020-01-30T17:34:39", "upload_time_iso_8601": "2020-01-30T17:34:39.115577Z", "url": "https://files.pythonhosted.org/packages/3b/09/17b5fc927b5714cf6f88120f5b86b877e422d7b40266c534e3c134d6de52/quadpy-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "15de4ea9ba337dd8c6dbfd89c7e0056a", "sha256": "3d735bf6e97e51ae4bf39d0337617e1135b66693f632c3db13cc39ccd211dad0" }, "downloads": -1, "filename": "quadpy-0.14.1-py3-none-any.whl", "has_sig": false, "md5_digest": "15de4ea9ba337dd8c6dbfd89c7e0056a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763042, "upload_time": "2020-02-03T12:58:42", "upload_time_iso_8601": "2020-02-03T12:58:42.642596Z", "url": "https://files.pythonhosted.org/packages/ff/78/6a2c60c4f404c8ea080bd700305d50e409c5306295754a9be68ca4b1cd85/quadpy-0.14.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0aa92522c73f9cd33623c6b030aed788", "sha256": "8ce9e9e13b8d508e3f8a0ea1c9d8a5d3cd0cca97bbf4358cd521ab141b437b3e" }, "downloads": -1, "filename": "quadpy-0.14.1.tar.gz", "has_sig": false, "md5_digest": "0aa92522c73f9cd33623c6b030aed788", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 632306, "upload_time": "2020-02-03T12:58:46", "upload_time_iso_8601": "2020-02-03T12:58:46.902908Z", "url": "https://files.pythonhosted.org/packages/e8/8b/0a85cf4abb48a651728003eec3041cec1bb770a287ce7bd60ecbb8ec221d/quadpy-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.10": [ { "comment_text": "", "digests": { "md5": "8b460d9d60d24f4b28983bd1eaf7b336", "sha256": "cb47f2873c4bf1e97c217413ca7ae005920ff8edd270f61c10087d9e842ef8d0" }, "downloads": -1, "filename": "quadpy-0.14.10-py3-none-any.whl", "has_sig": false, "md5_digest": "8b460d9d60d24f4b28983bd1eaf7b336", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 782643, "upload_time": "2020-05-01T14:14:01", "upload_time_iso_8601": "2020-05-01T14:14:01.256841Z", "url": "https://files.pythonhosted.org/packages/ca/00/e55ce69190d583d33e8341310bdb43f8c311933c66e09de757a4ab4e0eb6/quadpy-0.14.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a2248ea952fb5b56e75fe24dc3d1fd9e", "sha256": "359b068b3cceac2218159d82d6c8c5f25014aa978dce5505034834dbfe9f82b9" }, "downloads": -1, "filename": "quadpy-0.14.10.tar.gz", "has_sig": false, "md5_digest": "a2248ea952fb5b56e75fe24dc3d1fd9e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 657903, "upload_time": "2020-05-01T14:14:04", "upload_time_iso_8601": "2020-05-01T14:14:04.687855Z", "url": "https://files.pythonhosted.org/packages/69/a2/a8e388843d639897c5b86610fa98e93b874a81ee7b39e38e24692990102b/quadpy-0.14.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.11": [ { "comment_text": "", "digests": { "md5": "91f24474c2d819032b16804664f9e9dd", "sha256": "832936923dba97ac3fa05b79686c6965ee81282e5314bad49001d3e662454d2d" }, "downloads": -1, "filename": "quadpy-0.14.11-py3-none-any.whl", "has_sig": false, "md5_digest": "91f24474c2d819032b16804664f9e9dd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 786452, "upload_time": "2020-05-05T11:11:26", "upload_time_iso_8601": "2020-05-05T11:11:26.746413Z", "url": "https://files.pythonhosted.org/packages/24/15/829a4c28bf331c818124253c38950113f235be5262c5cbec03946a1c5af0/quadpy-0.14.11-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "940abd20702cc41a837d16d589830088", "sha256": "696c6023073b80eec72cb973d40cdc4e4719b7c71534c6ffabaf9d249e3d7a65" }, "downloads": -1, "filename": "quadpy-0.14.11.tar.gz", "has_sig": false, "md5_digest": "940abd20702cc41a837d16d589830088", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 661352, "upload_time": "2020-05-05T11:11:30", "upload_time_iso_8601": "2020-05-05T11:11:30.721324Z", "url": "https://files.pythonhosted.org/packages/bb/b1/03150117e5c9737af0c9e2063dfb7d5c4ca3621e13d5f3fb9afe60075a1c/quadpy-0.14.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "0d255efd20d2915cacd75cf5a6bf187f", "sha256": "f7859540e2c061735a399249692e0f520cf73c3988fcf349884cf2e002a4861d" }, "downloads": -1, "filename": "quadpy-0.14.2-py3-none-any.whl", "has_sig": false, "md5_digest": "0d255efd20d2915cacd75cf5a6bf187f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763256, "upload_time": "2020-02-03T19:30:24", "upload_time_iso_8601": "2020-02-03T19:30:24.705815Z", "url": "https://files.pythonhosted.org/packages/97/84/d1f45399eaf049cbe87d93455652bc654b5b6d3ca1d9999b7c785ecda32c/quadpy-0.14.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "168027d213a107061c187ae7a30e4e77", "sha256": "a7435f8dbca64595644e074abf4d78e071115c371244c6ec8983d4982bf4431f" }, "downloads": -1, "filename": "quadpy-0.14.2.tar.gz", "has_sig": false, "md5_digest": "168027d213a107061c187ae7a30e4e77", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 632578, "upload_time": "2020-02-03T19:30:28", "upload_time_iso_8601": "2020-02-03T19:30:28.992433Z", "url": "https://files.pythonhosted.org/packages/e4/91/1a769e2ace2e9c4da8598aa8bbb0a5234e9052c996cde531f60803fae957/quadpy-0.14.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "93d230571b2e143578c3cbc21333f662", "sha256": "5c0cebe3dbbe1eb0b2aa60d10e2a26e79d09199eeaeab0676daf9289248dea1b" }, "downloads": -1, "filename": "quadpy-0.14.3-py3-none-any.whl", "has_sig": false, "md5_digest": "93d230571b2e143578c3cbc21333f662", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763348, "upload_time": "2020-02-04T11:56:49", "upload_time_iso_8601": "2020-02-04T11:56:49.238780Z", "url": "https://files.pythonhosted.org/packages/78/b4/42626a086408371f17b59a4b9f0958f9ae0f203517f9bae116c55724ba37/quadpy-0.14.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "044bf4627cd007e2eb32455d4e5bec5b", "sha256": "c3462de8ba3e89e13f96e5fa80fc6f0feb451b64bef8817b30265e3b58c756ac" }, "downloads": -1, "filename": "quadpy-0.14.3.tar.gz", "has_sig": false, "md5_digest": "044bf4627cd007e2eb32455d4e5bec5b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 632704, "upload_time": "2020-02-04T11:56:53", "upload_time_iso_8601": "2020-02-04T11:56:53.885900Z", "url": "https://files.pythonhosted.org/packages/16/d1/f460e782701711445dd891bcb64e5a5c150e4c4f520fdcbf16e304af040d/quadpy-0.14.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.4": [ { "comment_text": "", "digests": { "md5": "411224e90c0953b9bfd82375aebe8a6d", "sha256": "67f6a8eedc53b5c49f440c51c844fa1d1a99db6f18d128818b83e2e9755d1f0c" }, "downloads": -1, "filename": "quadpy-0.14.4-py3-none-any.whl", "has_sig": false, "md5_digest": "411224e90c0953b9bfd82375aebe8a6d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763587, "upload_time": "2020-02-14T12:15:06", "upload_time_iso_8601": "2020-02-14T12:15:06.555432Z", "url": "https://files.pythonhosted.org/packages/20/d5/5d973b1da79c789c63bff4b59c1e3474c63427e751591fd84bab0fb4c45d/quadpy-0.14.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6b191e3718d7a5b07043305c9a94e2a", "sha256": "58e68c93d7b235666da0b1e6cbb9773b2821806b3a11aeba58a2119df2ef82c0" }, "downloads": -1, "filename": "quadpy-0.14.4.tar.gz", "has_sig": false, "md5_digest": "c6b191e3718d7a5b07043305c9a94e2a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 650511, "upload_time": "2020-02-14T12:15:09", "upload_time_iso_8601": "2020-02-14T12:15:09.915024Z", "url": "https://files.pythonhosted.org/packages/bf/75/3a16ebb47b7dd76692524bddf8b365c095af7424a0ac08c23fb65f20dcae/quadpy-0.14.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.5": [ { "comment_text": "", "digests": { "md5": "6171699c2723504e9f6b334d26b0e492", "sha256": "599a30160cab0cfee0576a5305cf40b5a2214895b19d18670b2310e25bc1aefa" }, "downloads": -1, "filename": "quadpy-0.14.5-py3-none-any.whl", "has_sig": false, "md5_digest": "6171699c2723504e9f6b334d26b0e492", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763589, "upload_time": "2020-02-20T08:37:06", "upload_time_iso_8601": "2020-02-20T08:37:06.774300Z", "url": "https://files.pythonhosted.org/packages/86/01/008e9b4cbc973824d26ad6056d8c5669bbfea6baa15d334d731bdc5283ef/quadpy-0.14.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0b725f8ef85fad620123bd3d6797a230", "sha256": "4ab25955964199d8dc28ae02a6c216da8c62ef9ef38c6d1eee07e98f6a1026a7" }, "downloads": -1, "filename": "quadpy-0.14.5.tar.gz", "has_sig": false, "md5_digest": "0b725f8ef85fad620123bd3d6797a230", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 650582, "upload_time": "2020-02-20T08:37:10", "upload_time_iso_8601": "2020-02-20T08:37:10.003742Z", "url": "https://files.pythonhosted.org/packages/c6/1d/1b40e5d8cad825861bffbf802600ecfb14ae18fb347695086e0b4ef4e2b9/quadpy-0.14.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.6": [ { "comment_text": "", "digests": { "md5": "33683b4f86c5a62c99b0e9082e93a115", "sha256": "a418cb31a11853109e347946ac3355a08b7c22f5bfd00bb9bd2436f38038d0a9" }, "downloads": -1, "filename": "quadpy-0.14.6-py3-none-any.whl", "has_sig": false, "md5_digest": "33683b4f86c5a62c99b0e9082e93a115", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 763635, "upload_time": "2020-03-02T14:11:14", "upload_time_iso_8601": "2020-03-02T14:11:14.622778Z", "url": "https://files.pythonhosted.org/packages/58/32/48f539e186133c61e60b81d728711d713566c35c52f7d55a1331a8086106/quadpy-0.14.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbfd8381a25058062d3b40ed2daa5feb", "sha256": "e9f881ede083a6cfde94bdfce5416112c2fcafcb5fa37ae9253f443b893b799b" }, "downloads": -1, "filename": "quadpy-0.14.6.tar.gz", "has_sig": false, "md5_digest": "cbfd8381a25058062d3b40ed2daa5feb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 650931, "upload_time": "2020-03-02T14:11:19", "upload_time_iso_8601": "2020-03-02T14:11:19.318598Z", "url": "https://files.pythonhosted.org/packages/86/79/3ec2a618ef2509320f9c89ec4f335342b30a5f016dcae25025e5df36d075/quadpy-0.14.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.7": [ { "comment_text": "", "digests": { "md5": "dc6dca96490468f7a15a379d65390c5f", "sha256": "8972819dbc72345ef9c0c0ba55352d62c1dded80d51d91b94cea3436577cf92c" }, "downloads": -1, "filename": "quadpy-0.14.7-py3-none-any.whl", "has_sig": false, "md5_digest": "dc6dca96490468f7a15a379d65390c5f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 775303, "upload_time": "2020-04-14T22:30:54", "upload_time_iso_8601": "2020-04-14T22:30:54.478863Z", "url": "https://files.pythonhosted.org/packages/2b/33/fcb6fab701c690313459bb6b3b29c1bf0fa930d8f07e426d01ef5a573f97/quadpy-0.14.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "14d9f4ca8729d60998fa1b3c7325b773", "sha256": "bcd1edf1572f9cdc708b20afad0449565759a557a0a668fc853c4238fd50f84e" }, "downloads": -1, "filename": "quadpy-0.14.7.tar.gz", "has_sig": false, "md5_digest": "14d9f4ca8729d60998fa1b3c7325b773", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 651286, "upload_time": "2020-04-14T22:30:57", "upload_time_iso_8601": "2020-04-14T22:30:57.994817Z", "url": "https://files.pythonhosted.org/packages/7e/fe/ba16e87cac91e21178be018295e9d02a1dd9c7f6300d099d73e20d11eb79/quadpy-0.14.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.8": [ { "comment_text": "", "digests": { "md5": "8865739bdf55d5516c2af6721377dbe2", "sha256": "7ac00912da647f0076d5af581940fedc50e41c82a2ccb7daaaa1367482bfd0dc" }, "downloads": -1, "filename": "quadpy-0.14.8-py3-none-any.whl", "has_sig": false, "md5_digest": "8865739bdf55d5516c2af6721377dbe2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 775507, "upload_time": "2020-04-24T22:40:27", "upload_time_iso_8601": "2020-04-24T22:40:27.527461Z", "url": "https://files.pythonhosted.org/packages/80/9f/9fbb8b2deeb2a2badae15d53fcbfa180c5cf6b4cbe3cec7da6d377500cf4/quadpy-0.14.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c3b4282139e4b29149d6093d0675b597", "sha256": "6a76ffe82245eb3e15648240dc203d77dbfda068f068c40bb0aaab7639a2d78d" }, "downloads": -1, "filename": "quadpy-0.14.8.tar.gz", "has_sig": false, "md5_digest": "c3b4282139e4b29149d6093d0675b597", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 652090, "upload_time": "2020-04-24T22:40:31", "upload_time_iso_8601": "2020-04-24T22:40:31.377267Z", "url": "https://files.pythonhosted.org/packages/56/3c/5a41d8529e6e62923f1aebbd6ab2fba43d8b6a993ad7fe5b1ccd26c8885f/quadpy-0.14.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.9": [ { "comment_text": "", "digests": { "md5": "2ccf66f64ba0966e7779046abbedfdf4", "sha256": "f573d3be3f64c40b23351a9744f37a4cbc970c80d9895a665fff55e3d7765aea" }, "downloads": -1, "filename": "quadpy-0.14.9-py3-none-any.whl", "has_sig": false, "md5_digest": "2ccf66f64ba0966e7779046abbedfdf4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 779737, "upload_time": "2020-04-28T12:34:39", "upload_time_iso_8601": "2020-04-28T12:34:39.702897Z", "url": "https://files.pythonhosted.org/packages/e0/13/2fff438ea1d60ff34effe2f974cc297cdb1d04dbd7ee28b1e66b870ddaf9/quadpy-0.14.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "02333be59206d39fb8874123e6774d05", "sha256": "21053e8b4b608a428c1fb852e4b31d25ac357aa24fb5f38653c372539d7bce7b" }, "downloads": -1, "filename": "quadpy-0.14.9.tar.gz", "has_sig": false, "md5_digest": "02333be59206d39fb8874123e6774d05", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 655656, "upload_time": "2020-04-28T12:34:43", "upload_time_iso_8601": "2020-04-28T12:34:43.606053Z", "url": "https://files.pythonhosted.org/packages/a1/db/555a24b74c854344c511cd182caeb1048d01467b6c89ced503b9b81e9be1/quadpy-0.14.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "227b1209b928a42383357b0416f32dcc", "sha256": "da0315e4c0714b12dc490acab152d3d82181b36645e88946489c31d0b5ba351c" }, "downloads": -1, "filename": "quadpy-0.15.0-py3-none-any.whl", "has_sig": false, "md5_digest": "227b1209b928a42383357b0416f32dcc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1208256, "upload_time": "2020-07-11T21:35:12", "upload_time_iso_8601": "2020-07-11T21:35:12.474679Z", "url": "https://files.pythonhosted.org/packages/0a/9f/e44648d806e08f5596fbfda86b941d100e15606c257057122bad4400767e/quadpy-0.15.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be9ece7e69bed97e615d6f976cd91eb2", "sha256": "62ca4a336df5d0d17f9c8e02a795c9a88c78541ca071c537f44cfd9e50deb9a1" }, "downloads": -1, "filename": "quadpy-0.15.0.tar.gz", "has_sig": false, "md5_digest": "be9ece7e69bed97e615d6f976cd91eb2", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1081100, "upload_time": "2020-07-11T21:35:17", "upload_time_iso_8601": "2020-07-11T21:35:17.268022Z", "url": "https://files.pythonhosted.org/packages/64/72/5d9f370fca5123c82fbd448231deb312fffa8db5bc042bc70238ed96a193/quadpy-0.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "75f2e1316327b1bb41f76847315546fc", "sha256": "0ee2c1ecec7da5c0d8f4a796094081b3043c5f9f9274e2292804c1c69bd6073c" }, "downloads": -1, "filename": "quadpy-0.15.1-py3-none-any.whl", "has_sig": false, "md5_digest": "75f2e1316327b1bb41f76847315546fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1263028, "upload_time": "2020-07-29T23:07:30", "upload_time_iso_8601": "2020-07-29T23:07:30.163048Z", "url": "https://files.pythonhosted.org/packages/47/48/7d49082def9ef49debd8d37bca746f7b2673f304d7399cce53519c7464bc/quadpy-0.15.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "04c60f9d3a6db80e449a04db8dfd8382", "sha256": "071cd2badd13fa17d29625cac93976c09eb85b223524e10f92a13dc13a919a00" }, "downloads": -1, "filename": "quadpy-0.15.1.tar.gz", "has_sig": false, "md5_digest": "04c60f9d3a6db80e449a04db8dfd8382", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1094848, "upload_time": "2020-07-29T23:07:34", "upload_time_iso_8601": "2020-07-29T23:07:34.406789Z", "url": "https://files.pythonhosted.org/packages/12/86/5ceb55c485de308bc9a0185b3e2a9521d4abddb58980ba9cffbb31c86bac/quadpy-0.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.2": [ { "comment_text": "", "digests": { "md5": "00437760495a62f624583df88f3b65b7", "sha256": "d662cb3c990c623ff253b5dc191ac075ade130cf73fc82559d9622842c29e25f" }, "downloads": -1, "filename": "quadpy-0.15.2-py3-none-any.whl", "has_sig": false, "md5_digest": "00437760495a62f624583df88f3b65b7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1308562, "upload_time": "2020-08-07T09:57:30", "upload_time_iso_8601": "2020-08-07T09:57:30.241773Z", "url": "https://files.pythonhosted.org/packages/28/b7/cdc6ae9eb22f0681234ea116d38a40511c906ea3ed19e03831d79f9891a7/quadpy-0.15.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "466f663cf7c6e17966bfe46d7cdbd414", "sha256": "e5ef23b37aad322e637dfa90ed7b80389b2c1cc9433f661fed15dfa10db45088" }, "downloads": -1, "filename": "quadpy-0.15.2.tar.gz", "has_sig": false, "md5_digest": "466f663cf7c6e17966bfe46d7cdbd414", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1101326, "upload_time": "2020-08-07T09:57:34", "upload_time_iso_8601": "2020-08-07T09:57:34.998074Z", "url": "https://files.pythonhosted.org/packages/21/5e/7617a081d49227e4cee372d7578e84198d8fbb8fe7b5ebebbf30168dafe5/quadpy-0.15.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "dc1b7e7388a9dddbef1d6772d9d8c0bd", "sha256": "392d38a80446c51c4c9e37b952e02c1ca62ef9cecce8c8369ef8d2539fb32af4" }, "downloads": -1, "filename": "quadpy-0.16.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dc1b7e7388a9dddbef1d6772d9d8c0bd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1342176, "upload_time": "2020-08-25T10:45:33", "upload_time_iso_8601": "2020-08-25T10:45:33.854681Z", "url": "https://files.pythonhosted.org/packages/7e/82/2421db30feb6b3f5bc1f31328941f7cccd31844417fc8271a2961f77ae97/quadpy-0.16.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0694b3ea1d588564405ada2d9fb1b0fc", "sha256": "25429b7e518bec5ba0be87c4d7a518bb228fe0fcfce4e6d8c1de8d0525732ee9" }, "downloads": -1, "filename": "quadpy-0.16.0.tar.gz", "has_sig": false, "md5_digest": "0694b3ea1d588564405ada2d9fb1b0fc", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1117127, "upload_time": "2020-08-25T10:45:37", "upload_time_iso_8601": "2020-08-25T10:45:37.095448Z", "url": "https://files.pythonhosted.org/packages/0b/02/28dec17b39c63b997c2ce0322d3b4d465c0da09967b1df1dce69864d63f5/quadpy-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.1": [ { "comment_text": "", "digests": { "md5": "4bb807d0eea366fd41b8ae92286d7842", "sha256": "8f545e7d306e56f48b5e94c19334dd26a8c8ec6528872785d2aab8c4af668722" }, "downloads": -1, "filename": "quadpy-0.16.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4bb807d0eea366fd41b8ae92286d7842", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1324676, "upload_time": "2020-08-25T21:47:28", "upload_time_iso_8601": "2020-08-25T21:47:28.482727Z", "url": "https://files.pythonhosted.org/packages/6b/35/4e088a5e4abe2b69fb07324d14d0f7e13c09babf0099faaaa0eda00ef757/quadpy-0.16.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1877d61b7f7040e1b324f10825fa4343", "sha256": "09820774b630e084a18ce252ce6ac070d09fae203ae564ab1e193f395799b5b6" }, "downloads": -1, "filename": "quadpy-0.16.1.tar.gz", "has_sig": false, "md5_digest": "1877d61b7f7040e1b324f10825fa4343", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1117154, "upload_time": "2020-08-25T21:47:32", "upload_time_iso_8601": "2020-08-25T21:47:32.819633Z", "url": "https://files.pythonhosted.org/packages/bb/27/96092bafdf27d7df1aff2b79078e8bbe79505c9cbf8b7edc5f2fa6afdc71/quadpy-0.16.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.10": [ { "comment_text": "", "digests": { "md5": "636fbe0b3510220c0ee9a2a83cca700f", "sha256": "a1374201a583ee7130e5cb898fca62eb40a3348b2a4a043b2172f2c1d7cb2ff4" }, "downloads": -1, "filename": "quadpy-0.16.10-py3-none-any.whl", "has_sig": false, "md5_digest": "636fbe0b3510220c0ee9a2a83cca700f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 1328387, "upload_time": "2021-09-30T09:27:44", "upload_time_iso_8601": "2021-09-30T09:27:44.413715Z", "url": "https://files.pythonhosted.org/packages/f3/36/cd4fc6a28b2cf2e3eef337d60f01a6a1ca6dc24ffead66d62f7d319af621/quadpy-0.16.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9369a02b35013ea5aee7ab67ad175c67", "sha256": "6915dd2cbb3bf3980168e81dff8cc11c91e5f045edf7ee95011d1c8af79acfd1" }, "downloads": -1, "filename": "quadpy-0.16.10.tar.gz", "has_sig": false, "md5_digest": "9369a02b35013ea5aee7ab67ad175c67", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 1106024, "upload_time": "2021-09-30T09:27:49", "upload_time_iso_8601": "2021-09-30T09:27:49.420901Z", "url": "https://files.pythonhosted.org/packages/40/99/bfe4acb4365ef40dfd6d829e92449417a7e790fcce5a93db0b5d19c0df4a/quadpy-0.16.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.11": [ { "comment_text": "", "digests": { "md5": "870a706026fa703e097519a3d00afc64", "sha256": "14e554e4194aeac3123afad134a25926e03ae14172eaa8c56c583172c40f97c8" }, "downloads": -1, "filename": "quadpy-0.16.11-py3-none-any.whl", "has_sig": false, "md5_digest": "870a706026fa703e097519a3d00afc64", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 4517159, "upload_time": "2022-03-30T14:31:58", "upload_time_iso_8601": "2022-03-30T14:31:58.612895Z", "url": "https://files.pythonhosted.org/packages/78/7c/763dc420ef93a19f6181458ce26af69a5dc84474fa05292433b47e35afe1/quadpy-0.16.11-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.16.13": [ { "comment_text": "", "digests": { "md5": "7d2d8b65785db207f058de8f01ee403b", "sha256": "c2b54610598c4b5dd0fdc97ca2773727e4784893205496e9dc71b30f852b27f0" }, "downloads": -1, "filename": "quadpy-0.16.13-py3-none-any.whl", "has_sig": false, "md5_digest": "7d2d8b65785db207f058de8f01ee403b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 4514784, "upload_time": "2022-04-07T19:25:40", "upload_time_iso_8601": "2022-04-07T19:25:40.076908Z", "url": "https://files.pythonhosted.org/packages/b0/3a/1fb8f21e200531fd1049450f58078f2f915a441e8d9574c8dd188d2a63d4/quadpy-0.16.13-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.16.14": [ { "comment_text": "", "digests": { "md5": "a47e1ccd9e01f129f8fdc6f58b5ef6e0", "sha256": "33b1bc226f3ab3e3f95f0d865dd3f66f15d0bffe5c85a186281959766631474b" }, "downloads": -1, "filename": "quadpy-0.16.14-py3-none-any.whl", "has_sig": false, "md5_digest": "a47e1ccd9e01f129f8fdc6f58b5ef6e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 4516960, "upload_time": "2022-04-19T13:33:48", "upload_time_iso_8601": "2022-04-19T13:33:48.609766Z", "url": "https://files.pythonhosted.org/packages/13/cd/10a551239aef67ac05e88d6dcef08dc858b5742f8187f67cdc62f3566b4c/quadpy-0.16.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.16.2": [ { "comment_text": "", "digests": { "md5": "994eff405fcccb798d0634dca9407b6c", "sha256": "01325375608895567fb32c093cf987695325c68902df07f80658c692480c424f" }, "downloads": -1, "filename": "quadpy-0.16.2-py3-none-any.whl", "has_sig": false, "md5_digest": "994eff405fcccb798d0634dca9407b6c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1324556, "upload_time": "2020-08-29T08:31:39", "upload_time_iso_8601": "2020-08-29T08:31:39.141692Z", "url": "https://files.pythonhosted.org/packages/b9/47/4c5b21c8bf4075870bde2f351a3d4700bbc4ecc5dcbda352d7e0e33c6c0b/quadpy-0.16.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fae38d38e11fe151c090193997ab651c", "sha256": "fbc8acf25b36a2305c6b949daf7506e4197559915ed07637c5322360fbfde6dd" }, "downloads": -1, "filename": "quadpy-0.16.2.tar.gz", "has_sig": false, "md5_digest": "fae38d38e11fe151c090193997ab651c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1117444, "upload_time": "2020-08-29T08:31:44", "upload_time_iso_8601": "2020-08-29T08:31:44.226280Z", "url": "https://files.pythonhosted.org/packages/8b/17/d6e144b2c4c4e6106c1050a3121850159921b7b3780ff224155c662fba84/quadpy-0.16.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.3": [ { "comment_text": "", "digests": { "md5": "d1d995b7cbc852d258eaff5a64f21e1a", "sha256": "9391f77e14fca1bddb5638468f5abd11352f732ac01ccd0df87fc72871cd9290" }, "downloads": -1, "filename": "quadpy-0.16.3-py3-none-any.whl", "has_sig": false, "md5_digest": "d1d995b7cbc852d258eaff5a64f21e1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1324773, "upload_time": "2020-11-23T11:01:26", "upload_time_iso_8601": "2020-11-23T11:01:26.232521Z", "url": "https://files.pythonhosted.org/packages/84/b7/ed9a2f86127b7e980c0603ede86b0907f9d2e8e8627857204bb8ffd834a3/quadpy-0.16.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4c6367c05a62962c07ace510f9b30a87", "sha256": "c6c97161e57b3aa26b1ccd90d6d2ff622036a964a549ccad03b6ea01e57fae3a" }, "downloads": -1, "filename": "quadpy-0.16.3.tar.gz", "has_sig": false, "md5_digest": "4c6367c05a62962c07ace510f9b30a87", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1118143, "upload_time": "2020-11-23T11:01:31", "upload_time_iso_8601": "2020-11-23T11:01:31.613704Z", "url": "https://files.pythonhosted.org/packages/1b/b8/9bdad0ff1f1b6030cd281c911faf3002d80dd983bdb2f6a02051750e1c26/quadpy-0.16.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.4": [ { "comment_text": "", "digests": { "md5": "0a3061fff7cc365529e79b953eae0fb8", "sha256": "c74dd9eb016af2feba2f54746c8ec1fe051040a56c148f9fa33659bf50d31f30" }, "downloads": -1, "filename": "quadpy-0.16.4-py3-none-any.whl", "has_sig": false, "md5_digest": "0a3061fff7cc365529e79b953eae0fb8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1325695, "upload_time": "2020-11-24T14:59:58", "upload_time_iso_8601": "2020-11-24T14:59:58.641898Z", "url": "https://files.pythonhosted.org/packages/62/30/c8c1d090ba93126ec55c406916d544d402e95176376f8d8c6115d296ab5e/quadpy-0.16.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94721c0b0a7dfd4bbc17a320c55eb585", "sha256": "2999cb6cc220046b4358582f84f3f0594bb02a60f7c897f953760472c247d164" }, "downloads": -1, "filename": "quadpy-0.16.4.tar.gz", "has_sig": false, "md5_digest": "94721c0b0a7dfd4bbc17a320c55eb585", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1118525, "upload_time": "2020-11-24T15:00:03", "upload_time_iso_8601": "2020-11-24T15:00:03.157272Z", "url": "https://files.pythonhosted.org/packages/54/28/3a29d1dffbc0eaae55e65f5267351efcce3990e932e17b76e30ea0536074/quadpy-0.16.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.5": [ { "comment_text": "", "digests": { "md5": "ebec094e618aabbcc5499bc303443d4a", "sha256": "48243dc7699a536bab2f59f71308dd5f58cd1993fdbfe20c33a31f2a904818c3" }, "downloads": -1, "filename": "quadpy-0.16.5-py3-none-any.whl", "has_sig": false, "md5_digest": "ebec094e618aabbcc5499bc303443d4a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1325938, "upload_time": "2020-12-17T17:15:30", "upload_time_iso_8601": "2020-12-17T17:15:30.154414Z", "url": "https://files.pythonhosted.org/packages/41/f0/c146c65f883e24a5c15f82568abcbc23a97e83551ea5b16536467a1d343a/quadpy-0.16.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e94d337434530d9a3fa4406fa67fed8a", "sha256": "1e763afa47b584b62ad51a717f083c80c1cdb7ad820aab5888724b8cf6035f1c" }, "downloads": -1, "filename": "quadpy-0.16.5.tar.gz", "has_sig": false, "md5_digest": "e94d337434530d9a3fa4406fa67fed8a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1118867, "upload_time": "2020-12-17T17:15:33", "upload_time_iso_8601": "2020-12-17T17:15:33.739025Z", "url": "https://files.pythonhosted.org/packages/84/fb/c9239713fc48e958ad9773f9fcc0f60c2278eb4efa0060a4256a72ff6058/quadpy-0.16.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.6": [ { "comment_text": "", "digests": { "md5": "2fb7a9a0ddb7b67a38acfb3393f1371c", "sha256": "fda7f5e1489e7afa275db483f32f1a01787b3b481f8e46801074afbb8f0171fc" }, "downloads": -1, "filename": "quadpy-0.16.6-py3-none-any.whl", "has_sig": false, "md5_digest": "2fb7a9a0ddb7b67a38acfb3393f1371c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1326498, "upload_time": "2021-02-08T16:23:57", "upload_time_iso_8601": "2021-02-08T16:23:57.555327Z", "url": "https://files.pythonhosted.org/packages/b2/78/3c53cf99a1ad62bbf1f4f80c04f12bf7d0866122c9d5e25bbee6423e3b77/quadpy-0.16.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6946260ef362528a1fd3ec99adec5d3e", "sha256": "a665f1d3f9fe8e1444a92a6d2cac288d423eed49418dbb9e15457e71fee4fa07" }, "downloads": -1, "filename": "quadpy-0.16.6.tar.gz", "has_sig": false, "md5_digest": "6946260ef362528a1fd3ec99adec5d3e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1118754, "upload_time": "2021-02-08T16:24:01", "upload_time_iso_8601": "2021-02-08T16:24:01.830779Z", "url": "https://files.pythonhosted.org/packages/ee/e2/e5f6995c976194d3876e62afc1e3a80f0080a025f8f1cb7d4dbeb6adc6c9/quadpy-0.16.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.7": [ { "comment_text": "", "digests": { "md5": "6d27f6a31f21203db052318e4fa50f7a", "sha256": "3a5bf312aeb4981037805b4c5787a228a1a53aa9173d86de2c6fe1e07ac33c1c" }, "downloads": -1, "filename": "quadpy-0.16.7-py3-none-any.whl", "has_sig": false, "md5_digest": "6d27f6a31f21203db052318e4fa50f7a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1326622, "upload_time": "2021-04-28T11:40:55", "upload_time_iso_8601": "2021-04-28T11:40:55.595470Z", "url": "https://files.pythonhosted.org/packages/08/c6/2b1c6cc8c0a50a45ddb0cc5c2eb7414791d1ee140a59616e7fe24b92b921/quadpy-0.16.7-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aadb399bf43b3f9b7495612684eaa8e5", "sha256": "ed0221d2ac0d497f7d269a186ee5ce24bcf43bfe0f28ee5a7b6051ca3ebf92e8" }, "downloads": -1, "filename": "quadpy-0.16.7.tar.gz", "has_sig": false, "md5_digest": "aadb399bf43b3f9b7495612684eaa8e5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1118627, "upload_time": "2021-04-28T11:40:58", "upload_time_iso_8601": "2021-04-28T11:40:58.706639Z", "url": "https://files.pythonhosted.org/packages/a4/fe/4aca21e841c375135e84a497fd91492db58055b9b3ed43273d930d379497/quadpy-0.16.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.8": [ { "comment_text": "", "digests": { "md5": "dab9938d5eebeefd2504f7e0d1a2e6b0", "sha256": "4e3872ba00e7a8e9ac97be95babee583821a0e142eddad9ceb63beaed1832138" }, "downloads": -1, "filename": "quadpy-0.16.8-py3-none-any.whl", "has_sig": false, "md5_digest": "dab9938d5eebeefd2504f7e0d1a2e6b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1326420, "upload_time": "2021-07-21T08:45:12", "upload_time_iso_8601": "2021-07-21T08:45:12.719494Z", "url": "https://files.pythonhosted.org/packages/26/30/9eb9ef3467006e309cf2af244ec4985f7d91a64e15168fd0454d17b6f7c3/quadpy-0.16.8-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8e4fd985bf6e515f8d9a0643764b31a", "sha256": "60f7152f0e62a369989be3e176a6d9bb3e9bc696d5ba101c1a8eecffb4ed1482" }, "downloads": -1, "filename": "quadpy-0.16.8.tar.gz", "has_sig": false, "md5_digest": "c8e4fd985bf6e515f8d9a0643764b31a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1099289, "upload_time": "2021-07-21T08:45:15", "upload_time_iso_8601": "2021-07-21T08:45:15.858441Z", "url": "https://files.pythonhosted.org/packages/7b/d6/20e54074c9c7218d4f2cfd74885a8e8003a776892cd8f152d77dcb53ede0/quadpy-0.16.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.9": [ { "comment_text": "", "digests": { "md5": "1edc7c20be2e39f9499220c66139086f", "sha256": "483bdf1163ccfc96f83d34081b2742bde3eb830fed34c26d03218c3026367bda" }, "downloads": -1, "filename": "quadpy-0.16.9-py3-none-any.whl", "has_sig": false, "md5_digest": "1edc7c20be2e39f9499220c66139086f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 1328234, "upload_time": "2021-08-18T18:16:16", "upload_time_iso_8601": "2021-08-18T18:16:16.190872Z", "url": "https://files.pythonhosted.org/packages/57/6f/032857c4a497e92210e329da1b1430eeca1c1d580fe0737e3816245e6d2e/quadpy-0.16.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3b22dda679631c5d94b5d3249030c059", "sha256": "2a230602068599991bc96112cae52e61a354e1d5a6eb2d3cc825b5321f49a8b3" }, "downloads": -1, "filename": "quadpy-0.16.9.tar.gz", "has_sig": false, "md5_digest": "3b22dda679631c5d94b5d3249030c059", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 1105684, "upload_time": "2021-08-18T18:16:19", "upload_time_iso_8601": "2021-08-18T18:16:19.386721Z", "url": "https://files.pythonhosted.org/packages/ce/f2/e21bb24086419a82083fb7931f3ff1a97ec3f2f2bfc8024a28ad8a891254/quadpy-0.16.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "c25c291c5570fe642febeccd6796b1f1", "sha256": "efb165428f481c526205740b4604b0a026df430887862173d0335123c60cb495" }, "downloads": -1, "filename": "quadpy-0.4.0.tar.gz", "has_sig": true, "md5_digest": "c25c291c5570fe642febeccd6796b1f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220468, "upload_time": "2017-02-17T22:45:12", "upload_time_iso_8601": "2017-02-17T22:45:12.011540Z", "url": "https://files.pythonhosted.org/packages/c7/9c/a8bcfd05d93b9136e8714ad0bf1620d25ca1f091b3db0630b3564da91ff6/quadpy-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "f9975a3b5e529e83f1d72eb28da1c45b", "sha256": "e2b1d691b0074cb38751c20ae42b0ed13a5bf5474a09a44e972a16946e1d9ba2" }, "downloads": -1, "filename": "quadpy-0.4.1.tar.gz", "has_sig": true, "md5_digest": "f9975a3b5e529e83f1d72eb28da1c45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220484, "upload_time": "2017-02-17T22:59:53", "upload_time_iso_8601": "2017-02-17T22:59:53.683831Z", "url": "https://files.pythonhosted.org/packages/13/73/ed4423f79be41a1cf77b0ed9555f1971a21258bf85b94fbe402f69222314/quadpy-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "390099276f60180f81f2c9c4e4b92baa", "sha256": "5cf37477c6b5fe1a3a4cd599f5e9a68f6131c5a997c69d0a52c0eba347e8397c" }, "downloads": -1, "filename": "quadpy-0.4.2.tar.gz", "has_sig": true, "md5_digest": "390099276f60180f81f2c9c4e4b92baa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 221115, "upload_time": "2017-03-15T14:39:30", "upload_time_iso_8601": "2017-03-15T14:39:30.528812Z", "url": "https://files.pythonhosted.org/packages/a3/9a/59c5e496262cf851a0c7ce2ba36602d4666006e781ba8772398aaae6497c/quadpy-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "5524ce4c9a601e1f0ddf9907bc42cdb2", "sha256": "7b23020cc62a3b2158dd841e92233eb014a2531a68d1012c1c7356423c7b12a2" }, "downloads": -1, "filename": "quadpy-0.5.0.tar.gz", "has_sig": true, "md5_digest": "5524ce4c9a601e1f0ddf9907bc42cdb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 221779, "upload_time": "2017-03-16T11:09:46", "upload_time_iso_8601": "2017-03-16T11:09:46.327740Z", "url": "https://files.pythonhosted.org/packages/a4/e2/8262655d249bb0f458a6d4623770560f2c1ea16b0564b11597587dc2f640/quadpy-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "6ad8d65fb150a28693f024c9d3343aa1", "sha256": "2e45d4be450a99a32fe3a6a529d44feb61d498dfc841490fa335eb1360888936" }, "downloads": -1, "filename": "quadpy-0.5.1.tar.gz", "has_sig": true, "md5_digest": "6ad8d65fb150a28693f024c9d3343aa1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 221814, "upload_time": "2017-03-16T13:14:31", "upload_time_iso_8601": "2017-03-16T13:14:31.844693Z", "url": "https://files.pythonhosted.org/packages/eb/81/771808f990d6727caa9709d9a1a464fe628b37e09f4c26ec7e54678e9b26/quadpy-0.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "c03b37f34632ef8fb68b2a5e5b0ec842", "sha256": "f80f445501233e8aa603b201e5ded0841ae274cc7f1fe9cdfd7dcda14b87cf49" }, "downloads": -1, "filename": "quadpy-0.5.2.tar.gz", "has_sig": true, "md5_digest": "c03b37f34632ef8fb68b2a5e5b0ec842", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220765, "upload_time": "2017-03-17T14:23:53", "upload_time_iso_8601": "2017-03-17T14:23:53.332890Z", "url": "https://files.pythonhosted.org/packages/c1/24/40d34b9d45c2319abf4f3a8584346f11eba18e8c46961d875ee3f0bb66d3/quadpy-0.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "38a0a4a7524287be735853dca9881e91", "sha256": "79e730ebd713bbbf68c09fa93161b80f75af0c14c192594918322a95e288375a" }, "downloads": -1, "filename": "quadpy-0.5.3.tar.gz", "has_sig": true, "md5_digest": "38a0a4a7524287be735853dca9881e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226801, "upload_time": "2017-03-17T20:23:53", "upload_time_iso_8601": "2017-03-17T20:23:53.781581Z", "url": "https://files.pythonhosted.org/packages/e5/9c/a384186ed8cea0f1a2723c11dabf128c55501032870c61cc22e291af3be3/quadpy-0.5.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "1c24119615f1cf32f36fc8793b33482a", "sha256": "61736e356ad3c968f4833ec45ed6de05cab7a12857f4de9f3243598c3ee7e8f1" }, "downloads": -1, "filename": "quadpy-0.5.4.tar.gz", "has_sig": true, "md5_digest": "1c24119615f1cf32f36fc8793b33482a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 226949, "upload_time": "2017-03-20T08:52:56", "upload_time_iso_8601": "2017-03-20T08:52:56.859630Z", "url": "https://files.pythonhosted.org/packages/56/85/ebb55c3a42e4bef4e85c9236f6905037f2d8a8ea4630e41df2b510141617/quadpy-0.5.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "b4c0cc71222ed20aef68404c8672183e", "sha256": "81aaa51efc89279dd63f682b56265c52155d6a0955dcb9817506005157910fcd" }, "downloads": -1, "filename": "quadpy-0.5.5.tar.gz", "has_sig": true, "md5_digest": "b4c0cc71222ed20aef68404c8672183e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 221722, "upload_time": "2017-03-22T08:52:01", "upload_time_iso_8601": "2017-03-22T08:52:01.940133Z", "url": "https://files.pythonhosted.org/packages/bb/20/4a514bbc6d35e81b1deb3c69e4d35f6b433b3286bee7357e9eeb93ae3976/quadpy-0.5.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "ead1115239fb06843df2c4b8452bda67", "sha256": "4ecb0746fe18861aff0b3b7a3f7a24f9db7a8355f827b513dbbd8169a49cbcd0" }, "downloads": -1, "filename": "quadpy-0.6.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ead1115239fb06843df2c4b8452bda67", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 296124, "upload_time": "2017-04-06T13:36:14", "upload_time_iso_8601": "2017-04-06T13:36:14.765879Z", "url": "https://files.pythonhosted.org/packages/b1/b6/5bae252017ad2e2ec12930570add25831503d0419ecd34e10ceb30957b7f/quadpy-0.6.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "49df87e4ce9a9926fd58f47e8ceb9f84", "sha256": "d8535dd2a7bc159e2a1ed7f7796d0dfe322403e74bfb19c5e56664874ff15c54" }, "downloads": -1, "filename": "quadpy-0.6.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "49df87e4ce9a9926fd58f47e8ceb9f84", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 299388, "upload_time": "2017-04-26T11:20:27", "upload_time_iso_8601": "2017-04-26T11:20:27.552895Z", "url": "https://files.pythonhosted.org/packages/c8/bc/e732d3821e924100e0f5d0c8bb6372bef5ddcbcc8692c2b2572a6e0b69aa/quadpy-0.6.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "d69e2161c95ede59beff410f32cf3039", "sha256": "1b90e77c466b3ba98a4a74fc7436546ba6dc7031614f90c3c818099556d119c8" }, "downloads": -1, "filename": "quadpy-0.7.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d69e2161c95ede59beff410f32cf3039", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 253045, "upload_time": "2017-07-13T18:14:17", "upload_time_iso_8601": "2017-07-13T18:14:17.245865Z", "url": "https://files.pythonhosted.org/packages/9b/bc/3147a2818003947679bb7f74a7c0d4280d86902c3e8f6829add609ed3baf/quadpy-0.7.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "f2894dae99742bb8ac9881c965bfcad5", "sha256": "10d0c17e3b9435910b81bc2e5b96f1ea4c8635edf540d34e9ba74f49308c786a" }, "downloads": -1, "filename": "quadpy-0.7.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f2894dae99742bb8ac9881c965bfcad5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 259925, "upload_time": "2017-07-14T10:26:30", "upload_time_iso_8601": "2017-07-14T10:26:30.083732Z", "url": "https://files.pythonhosted.org/packages/64/16/513911e54d744f72eb07db9f50ba2cbb5795d737ee8186a75183618bbe3e/quadpy-0.7.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "e2ff93482b2053f44d966b9ec4e2d3cd", "sha256": "845e895a322f833052636b58a89483ab4cc6e3d6ef9ed5a2c434416931a3d6f4" }, "downloads": -1, "filename": "quadpy-0.8.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e2ff93482b2053f44d966b9ec4e2d3cd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 289580, "upload_time": "2017-07-18T15:49:22", "upload_time_iso_8601": "2017-07-18T15:49:22.362390Z", "url": "https://files.pythonhosted.org/packages/01/37/7e6c5e92cc8a394cc1b00de435ef8711a68cf0c84e931cdc14cdca3897eb/quadpy-0.8.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "479055313135db9d4ec31b168f79ddad", "sha256": "b42fd875359279d5bf5be379063311de618e834a73df10f883b3fb69bb3ada2d" }, "downloads": -1, "filename": "quadpy-0.8.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "479055313135db9d4ec31b168f79ddad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 292769, "upload_time": "2017-07-24T17:03:24", "upload_time_iso_8601": "2017-07-24T17:03:24.366470Z", "url": "https://files.pythonhosted.org/packages/fd/b6/02ee3c870f46f13e068a3a626b4283e3e1a349d6419408496e8f76c0cdff/quadpy-0.8.1-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "620641d2c3a3ff429e4ce2d3ea6452b4", "sha256": "1ee7cc36f66d6e29f59bcfd6164d227f6bfde722501aa26083334a15bf1f6e9b" }, "downloads": -1, "filename": "quadpy-0.8.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "620641d2c3a3ff429e4ce2d3ea6452b4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 298069, "upload_time": "2017-07-24T21:55:21", "upload_time_iso_8601": "2017-07-24T21:55:21.560613Z", "url": "https://files.pythonhosted.org/packages/44/c5/d5040731c3ec4f44fd01d6ceaa891569f4cac843a94229522ff43473492a/quadpy-0.8.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "05d5b7c405c518e886a8c743df4b74dc", "sha256": "563f046d3365bfac4e63e08532339960bc743785883374168cacd35003d89ed0" }, "downloads": -1, "filename": "quadpy-0.8.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "05d5b7c405c518e886a8c743df4b74dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 304188, "upload_time": "2017-07-25T17:25:28", "upload_time_iso_8601": "2017-07-25T17:25:28.633206Z", "url": "https://files.pythonhosted.org/packages/e9/3b/f007ec2343b7362fa7bcb1ff2ddd83df07c67abc508a6232029dadb87a7e/quadpy-0.8.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "6cd379f403d604249adbc665da2da722", "sha256": "3cf08b28e85029ee7d168af738ad6a03a7329ad93a4751367dbea539b187ac50" }, "downloads": -1, "filename": "quadpy-0.9.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6cd379f403d604249adbc665da2da722", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 306160, "upload_time": "2017-07-28T17:55:16", "upload_time_iso_8601": "2017-07-28T17:55:16.478275Z", "url": "https://files.pythonhosted.org/packages/ff/4d/7f468b07a4bc8916a57ea795e3192c6cfb76e0b6ab63e11439f87f475340/quadpy-0.9.0-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "dc5f9a296660755cf7ecb0a869074e12", "sha256": "c2e79bbe9e1ed3a5c35addda8afccef1cee144845c1a5d0933720bf15de9fedb" }, "downloads": -1, "filename": "quadpy-0.9.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "dc5f9a296660755cf7ecb0a869074e12", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 363394, "upload_time": "2017-08-02T07:02:21", "upload_time_iso_8601": "2017-08-02T07:02:21.945148Z", "url": "https://files.pythonhosted.org/packages/16/82/42ae1508660b49128fa86ef3fcbaaa91a6143b069529febc9dc20528b9ff/quadpy-0.9.2-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "bb9c4fe79e4dff053ae63f1fd2283c21", "sha256": "26337b65cde7b613fb5659bcde4dc7083db08b644be58229e75d2d97814c33ed" }, "downloads": -1, "filename": "quadpy-0.9.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "bb9c4fe79e4dff053ae63f1fd2283c21", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 364125, "upload_time": "2017-08-02T15:51:09", "upload_time_iso_8601": "2017-08-02T15:51:09.971417Z", "url": "https://files.pythonhosted.org/packages/73/58/70e21695702f71178c14795b61a866a012d883e4cc4563c128dd7fa85bfe/quadpy-0.9.3-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "4451c7d2617d2e26928069ffd58ae185", "sha256": "cb73648632754df01d1a8b0867b5e787ee36a6108a85b74d02405ecca781e5c5" }, "downloads": -1, "filename": "quadpy-0.9.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4451c7d2617d2e26928069ffd58ae185", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 315334, "upload_time": "2017-08-04T18:08:52", "upload_time_iso_8601": "2017-08-04T18:08:52.234928Z", "url": "https://files.pythonhosted.org/packages/7e/3c/7f7feb3e40b6d62f37c34dc944c54d875399bba347a44704771142a3ece4/quadpy-0.9.4-py2.py3-none-any.whl", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a47e1ccd9e01f129f8fdc6f58b5ef6e0", "sha256": "33b1bc226f3ab3e3f95f0d865dd3f66f15d0bffe5c85a186281959766631474b" }, "downloads": -1, "filename": "quadpy-0.16.14-py3-none-any.whl", "has_sig": false, "md5_digest": "a47e1ccd9e01f129f8fdc6f58b5ef6e0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 4516960, "upload_time": "2022-04-19T13:33:48", "upload_time_iso_8601": "2022-04-19T13:33:48.609766Z", "url": "https://files.pythonhosted.org/packages/13/cd/10a551239aef67ac05e88d6dcef08dc858b5742f8187f67cdc62f3566b4c/quadpy-0.16.14-py3-none-any.whl", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }