Skip to main content

A Python Geometry Processing Toolbox

unit tests unit tests unit tests PyPI

https://gpytoolbox.org

logo

Authors: Silvia Sellán, University of Toronto and Oded Stein, Massachusetts Institute of Technology

This is a very young library of general geometry processing Python research utility functions that evolves from our personal student codebases.

Installation

Latest stable release (recommended)

You should be able install the latest release of Gpytoolbox with pip:

python -m pip install gpytoolbox

A conda installation will be supported in the future.

From Git

If you want to build Gpytoolbox from a specific git commit; for example, because you want to develop for Gpytoolbox or because you want some functionality that is in the main branch but hasn't been pushed to any release yet, you should be able to do so by cloning Gpytoolbox's github repo and running

python -m pip install numpy
python -m pip install .

Documentation

You can find documentation for all our functions in our website. You can also view the documentation for a specific function by running help(function_name) or function_name.__doc__; for example,

>>> from gpytoolbox import grad
>>> help(grad)
Finite element gradient matrix

Given a triangle mesh or a polyline, computes the finite element gradient matrix assuming piecewise linear hat function basis.

Parameters
----------
V : numpy double array
    Matrix of vertex coordinates
F : numpy int array, optional (default None)
    Matrix of triangle indices

Returns
-------
G : scipy sparse.csr_matrix
    Sparse FEM gradient matrix

See Also
--------
cotangent_laplacian.

Notes
-----

Examples
--------
TO-DO

Contribute

We hope you find our current version of our library useful. At the same time, we encourage you to ask not what Gpytoolbox can do for you, but what you can do for Gpytoolbox.

Since Gpytoolbox is a very young library, we want to make it as easy as possible for others to contribute to it and help it grow. You can contribute by adding a new function in a new file inside src/gpytoolbox/, or by adding to existing functions, and submitting a Pull Request.

We also want to make the contribution process as unintimidating as possible. We will gladly review and edit your code to make sure it acommodates to our standards and we have set up many tests that will let us know if your contribution accidentally breaks anything. If there's any functionality that is not already in this library, is remotely related to geometry processing, and you have used or used in any of your past projects, we encourage you to submit it as-is in a Pull Request. We will gladly credit you in the individual function as well as on this home page.

License

Gpytoolbox's is released under an MIT license (see details), except for files in the gpytoolbox.copyleft module, which are under a GPL one (see details). Functions in the copyleft module must be imported explicitly; this way, if you import only the main Gpytoolbox module

import gpytoolbox

or individual functions from it,

from gpytoolbox import regular_square_mesh, regular_cube_mesh

you are only bound by the terms of the permissive MIT license. However, if you import any functionality from gpytoolbox.copyleft; e.g.,

from gpytoolbox.copyleft import mesh_boolean

you will be bound by the more restrictive GPL license.

Acknowledgements

Several people have, knowingly or unknowingly, greatly contributed to this library. We are thankful to them:

  • Alec Jacobson is the author of the original Matlab gptoolbox on which we inspired ourselves to create this library. Several of our functions are line-by-line translations of his Matlab ones. Thanks, Alec!

  • Nicholas Sharp, the author of the game-changing geometry visualization library polyscope, was extremely helpful in guiding us through setting up and distributing a Python package. Thanks, Nick!

TO-DO

  • Add examples to docstrings.
  • Implement tet mesh version of linear_elasticity_stiffness.py
  • Implement tet mesh version of linear_elasticity.py
  • Improve poisson_surface_reconstruction and make it 3D.
  • Make in_element_aabb python implementation
  • Merge our squared_distance with libigl winding number and have logarithmic signed distances to mesh
  • Switch to pybind11
  • Port fracture modes code
  • Add tets to subdivide.py
  • dihedral_angles.py
  • Intrinsic Delaunay triangulation
  • Triangle-triangle distance and Hausdorff distance (with AABB)
  • Package for conda distribution
  • Add notes on every docstring mentioning libigl implementations
  • regular_square_mesh should support different resolutions in x and y direction (sensible default when n_y is None, to n_y=n_x)
  • Make all grid sizes, resolutions, etc. into tuples not necessarily numpy arrays
  • Write test_poisson_surface_reconstruction.py and debug k1 / kernel width.

Release files for gpytoolbox 0.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for gpytoolbox 0.0.3
File Size Uploaded
gpytoolbox-0.0.3.tar.gz 1.6 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for gpytoolbox 0.0.3
File
gpytoolbox-0.0.3-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
gpytoolbox-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
gpytoolbox-0.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
gpytoolbox-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
gpytoolbox-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
gpytoolbox-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
gpytoolbox-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
gpytoolbox-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
gpytoolbox-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
gpytoolbox-0.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
gpytoolbox-0.0.3-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
gpytoolbox-0.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
gpytoolbox-0.0.3-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 166.1 MB

Release files / gpytoolbox-0.0.3.tar.gz

Download URL gpytoolbox-0.0.3.tar.gz
Size 1.6 MB
Tags Source
SHA-256 checksum
How to use checksums
a5e7e42dd3b412c202c16c9d1a841bf8eaaa3604463dd33fcd88ddf236d52de4
BLAKE2b-256 checksum
How to use checksums
48d563c5d8233583475b7f4e86c569cbf7f4d3dbbcfef74c9794a31be088f3b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp38-pypy38_pp73-win_amd64.whl

Download URL gpytoolbox-0.0.3-pp38-pypy38_pp73-win_amd64.whl
Size 5.9 MB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
882002e35288cf44668c9661a0c27f64ffcb1e69c140ec08d38fa5dce33da3a2
BLAKE2b-256 checksum
How to use checksums
4d72d41ba80a9f913cad4ac96949bdf9898e5b7cea699c5412b20eeefddef2c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 9.8 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
f82a272433281c92e45b38429c5dac0927199e849ab941f12bf7ce7ae94a6ded
BLAKE2b-256 checksum
How to use checksums
e73240a73e25ee0fe6446a8c04a80559f3da3b57673bee9149fc855992abeb7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 9.3 MB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
fa0ec1dd737169b45868fd9990cecf38e4b3bab146430457f7539c9dd4fb998d
BLAKE2b-256 checksum
How to use checksums
70f56f8b52a70e92765170dfabe37adcce023f85726afcb72dc1edd64c8261d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp37-pypy37_pp73-win_amd64.whl

Download URL gpytoolbox-0.0.3-pp37-pypy37_pp73-win_amd64.whl
Size 5.9 MB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
169199db80ddb1971910e98b41c880a8b7db721fa46bc5df633d5ea59ed2d767
BLAKE2b-256 checksum
How to use checksums
ac25ce1bea1c03bff395fe2158c56ebebb693365c64f2ad709446847b3c45a5b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 9.8 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
efa813e2ad3b56efcfcf49edf28370d48a1df03c988acc9e51b931b0b25e1c5d
BLAKE2b-256 checksum
How to use checksums
d9a5671474cc03c7482317301015816fa22630a3019a54c63857113057474781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2bf63673d47a0af75e58b62bef9a73ed720da2cbff93007e507d9dff348fa0c8
BLAKE2b-256 checksum
How to use checksums
a0778eb8fb05197da807a9de9f0ea0fb6f4b82208590920f9305aa956ef19ffa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp310-cp310-win_amd64.whl

Download URL gpytoolbox-0.0.3-cp310-cp310-win_amd64.whl
Size 4.4 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
b33756baf4e92723344424d9c863fc93bbd52b7a65d426b4d5af843f990c92b8
BLAKE2b-256 checksum
How to use checksums
4f229605526ce88483c3f0bae9bd29a9be6ba6cf8dba6a4a8c5815db53ce3a0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1605e6faf6e3fb2c28568c13e03ad019d32336f7961db8541a91d8e32e81600b
BLAKE2b-256 checksum
How to use checksums
acaad600a4e3bce19c84515e660d3e3bb67f07a91e9fd5692066fce9af393f96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL gpytoolbox-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Size 5.7 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e383525cff8dc70adbb483114aae1f6c8de835938ee1a8c0bf3d51757603cb60
BLAKE2b-256 checksum
How to use checksums
c65c9a1a52a5f51be118d8b5b97f1598462ac70c4d35b0ea5af7f1b240034420
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d9b4ec7b4251f80c212d04b3cf5a3a6529bc286d33cc21a30fe23ca25351ff29
BLAKE2b-256 checksum
How to use checksums
314444ccc972cd5e19d5f7734317b69b68403ebb91810b211036eab2dc2b72bc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp39-cp39-win_amd64.whl

Download URL gpytoolbox-0.0.3-cp39-cp39-win_amd64.whl
Size 4.4 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9c571c4dfb59951ae94d47b6fde19186b9f7a5b10c7cc743dbcd48c246229b30
BLAKE2b-256 checksum
How to use checksums
e49cd3db9ee7ed903ab83d69adc634d06b9ad45618caa203743c594340164f5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
aab70a2a9633b648193112a23469412a78a6caef2c8db134c48b0afc91e8a5e8
BLAKE2b-256 checksum
How to use checksums
af864fc5e49a965705955a2b410882cc28272714eae4cf56e5762a40de8d43cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL gpytoolbox-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
Size 5.7 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
6247e8e3777013a522aae0b48861d6bac3d8cbb24cfeedbc994de6fd29277e59
BLAKE2b-256 checksum
How to use checksums
eb8a1a6d9e41e4c0bc2b9ad6d7ea5b2f019f3bbfe27d2da20bd9df7de3d06e4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e51407a6ed9cdb7e61bf14eae7aeb852ff63632a0d33ea0a16e28f71903ee078
BLAKE2b-256 checksum
How to use checksums
305b27cf2bca2cfbd565859d05d6e89befa0d57d4a2e720281abb4a90de9220d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp38-cp38-win_amd64.whl

Download URL gpytoolbox-0.0.3-cp38-cp38-win_amd64.whl
Size 4.5 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
908e50b600acd0ea0865e0442a718c035c170468aa5b4b1410f72900c5c14d1d
BLAKE2b-256 checksum
How to use checksums
30be6fff61d92a037c2c36a4c5693accbae46ce28351d4320bfb0057dafce3af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b4137fdf818a80b8ee5c2b4f8567ff50177f5a18008aec7cc3b3c533bd3f10aa
BLAKE2b-256 checksum
How to use checksums
c73e25342926c6bb3893cce88fdc74aeb45bf4233bda931b1336c9ba91c5b8a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL gpytoolbox-0.0.3-cp38-cp38-macosx_11_0_arm64.whl
Size 5.7 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
56b0a8b98c9118bb5cddb13a2483600d35f4a1fe3632b7241857bc964bfb1f1f
BLAKE2b-256 checksum
How to use checksums
1ba1d3649926e5083ff3e75efe92666369d689b231f9794b50b3545f50160e75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
163c0b28a87ee0d24027460076b226036b4a09a813c8ef4522e8f295a3a991af
BLAKE2b-256 checksum
How to use checksums
0343a74c05dd032dc05bc2ef6060728509a8a95e7bb51aab75bda623b196da18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp37-cp37m-win_amd64.whl

Download URL gpytoolbox-0.0.3-cp37-cp37m-win_amd64.whl
Size 4.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
7df45be72ab3b375b6ee14ee4a253d24fa68a7f82b7016d12fca2bc252eeda57
BLAKE2b-256 checksum
How to use checksums
afbc8bbe2ee50252472597cefe462768568dfb9c0181560ba22c65c0e20f878a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bcbfe8e0db08b33eb44c1ed5565c39e319abbd4136dff7ab348b3d506810b12e
BLAKE2b-256 checksum
How to use checksums
dcca8a895c59d2f106771485ae0964aae686a8e14525fdea76e63565d1fc995f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-cp37-cp37m-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a1445d4eaa7037585cb2473227c88c499a66c4405f8736c65325148ab1a2b58a
BLAKE2b-256 checksum
How to use checksums
20b8a9761d3331a3463f28431cd136a13694f8180aed8179618357cf5c16e930
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp36-cp36m-win_amd64.whl

Download URL gpytoolbox-0.0.3-cp36-cp36m-win_amd64.whl
Size 4.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
f6a73c8a8fc220a2ed1fc8a183e9ecdce893687c7e0d927a98cb4159c6e608e8
BLAKE2b-256 checksum
How to use checksums
4578443304e9358918835e7c0692d7cd0138ecb0427f828fb305e6b47870facd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL gpytoolbox-0.0.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 8.0 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
672fb34c3814b0f74b940152e896c5eafc674fd95ba1f895fd05495552d59fd7
BLAKE2b-256 checksum
How to use checksums
0ec12705cde892bd827f1e6c8ea60ef56a13875d51c17e03f7bb0973168ea34e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release files / gpytoolbox-0.0.3-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL gpytoolbox-0.0.3-cp36-cp36m-macosx_10_9_x86_64.whl
Size 7.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
92c4f05416a31d04338438ab2b2d4e2a4a6d045d979cdc06b23c703ec4e3d554
BLAKE2b-256 checksum
How to use checksums
073497c2f720a07867c1fec0e3a7c27b73fc1813bea1cbe35d3cea26fa9ac95a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.15

Release history Release notifications | RSS feed

0.3.7

16 release files

0.3.6

16 release files

0.3.5

13 release files

0.3.4

12 release files

0.3.3

24 release files

0.3.2

27 release files

0.3.1

27 release files

0.3.0

27 release files

0.2.0

23 release files

0.1.0

23 release files

This release

0.0.3 This release

25 release files

0.0.2

25 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page