G+Smo (Geometry + Simulation Modules)
Project description
GGGGGGGGG GGGG GGGGGGGGG GGGGGG GGGGGG GGGGGGGGGG
GGGG GGGG GGGG GGGGGG GGGGGG GGGG GGGG
GGGG GGGGGGGGGGGG GGGGGGGGG G GGGG G GGGG GGGG GGGG
GGGG GGGGGG GGGGGGGGGGGGG GGGGGGGGGG GG GGGG GG GGGG GGGG GGGGG
GGGGG GGGGG GGGGGGGGGGGG GGGGGGGGG GG GGGGGG GGGG GGGG GGGG
GGGG GGGG GGGG GGGG GG GGGG GGGG GGGG GGGG
GGGGGGGGGG GGGG GGGGGGGGG GG GGG GGGG GGGGGGGGGG
======================================================================
===== Geometry plus Simulation modules =====
===== https://github.com/gismo =====
======================================================================
Continuous Integration status
System | Status | More information |
---|---|---|
CDash | Report results from all builds | |
Appveyor | Windows MSVC 14.0 | |
Circle CI | MacOS XCode 14.3 (x86_64/arm64) | |
Codeship | ||
GitLab | Linux non-default configurations | |
GitHub Actions | Latest Linux/MacOS/Windows | |
GitLab-Inria | CI at Inria | |
GCC Farm | Status | Builders from the GCC Farm |
OBS | binaries | Upstream package builds for many Linux distributions |
Launchpad | binaries | Upstream package builds for Ubuntu distributions |
This README file contains brief information. More details are found in the Wiki pages.
The latest revision of the code can be obtained using git (via https):
git clone https://github.com/gismo/gismo.git
or using subversion:
svn co https://github.com/gismo/gismo/trunk gismo
or as a tar.gz or zip file:
- https://github.com/gismo/gismo/archive/stable.tar.gz
- https://github.com/gismo/gismo/archive/stable.zip
Prerequisites
-
Operating systems:
- MS Windows
- Linux
- macOS
- FreeBSD
-
Configuration: CMake 2.8.12 or newer.
-
Compilers tested include recent versions of
- AMD Optimizing C/C++ Compiler
- AppleClang see here for OpenMP support
- Clang
- GNU GCC
- Intel C++ compiler
- Mingw64
- MS Visual Studio C++
- PGI C/C++ only with
GISMO_WITH_OPENMP=OFF
-
Compilers known to not work
- Oracle Developer Studio fails to compile Eigen
- IBM XLC C/C++ fails to compile Eigen
-
Recommended:
Compilation
The compilation requires configuration using CMake at a new, empty folder (in-source builds are disabled).
-
On Linux/macOS: A Unix makefile exists in the root source folder. Running
make
creates a sub folder namedbuild
and executes CMake and compilation inside that folder. Alternatively, choose your own build folder and execute CMake pointing to the sources. -
On MS Windows:
-
To compile G+Smo natively, you can use MS Visual Studio which has built-in CMake support since version 2015. Alternatively, you can run the
cmake-gui
tool (from an environment that is configured with your compiler) to generate makefiles (or Visual Studio project files). Then execute the make tool to launch compilation. Alternatively, use the QtCreator GUI and open the CMakeLists.txt file on the root folder to create a QtCreator project. -
Another option is to install Windows Subsystem for Linux which:
lets developers install a Linux distribution [...] and use Linux applications, utilities, and Bash command-line tools directly on Windows, unmodified, without the overhead of a traditional virtual machine or dualboot setup.
Then you can download, compile and use G+Smo as if your were using a native Linux machine.
-
After successful compilation a dynamic library is created in ./lib
and
executable example programs are output at the ./bin
subdirectory of
the build folder.
Additionally, if Doxygen is available on the system one can execute (eg. on Linux):
make doc
to obtain the Doxygen documentation in HTML format. The main doxygen
page is at ./doc/html/index.html
.
More information at https://github.com/gismo/gismo/wiki
Optional modules
There is a number of optional modules that may be enabled.
Name | Description |
---|---|
gsOpenCascade | Extends functionality using OpenCascade |
gsElasticity | |
gsKLShell | |
gsStructuralAnalysis |
To enable e.g. gsSpectra and gsOpenCascade set the following option in CMake:
-D GISMO_OPTIONAL="gsSpectra;gsOpenCascade"
Configuration Options
The available options are displayed at CMake configuration. Short description and default setting follows:
-
CMAKE_BUILD_TYPE Release
Available values are the standard CMake build configurations: Debug, Release, RelWithDebInfo, MinSizeRel.
-
GISMO_COEFF_TYPE double
The arithmetic type to be used for all computations. Available options include double, long double, float.
-
GISMO_EXTRA_INSTANCE not set
If set to one or more of the options available for GISMO_COEFF_TYPE the G+Smo library is compiled with extra arithmetic types enabled.
-
GISMO_WITH_XDEBUG OFF
If set to ON additional debugging tools are enabled during compilation. These include checked iterators for GCC and MSVC compilers and call stack back-trace printout when a runtime exception occurs.
-
GISMO_BUILD_LIB ON
If enabled a dynamic library is created using GISMO_COEFF_TYPE arithmetic. A target for a static library named gismo_static is also created but not compiled by default.
-
GISMO_BUILD_EXAMPLES ON
If enabled the programs in the examples folder are compiled, and executables are created in build-folder/bin.
-
GISMO_BUILD_UNITTESTS OFF
If enabled the tests in the unittests folder are compiled, and an executable is created in build-folder/bin.
-
GISMO_PLUGIN_AXL OFF
If enabled the plugin for Axel modeler is compiled (requires Axel).
-
GISMO_WITH_PSOLID OFF
If enabled the extensions using functionalities of Parasolid geometric kernel are compiled (requires Parasolid).
-
gsOpennurbs
Extension for reading and writing of Rhinoceros' 3DM.
-
CMAKE_INSTALL_PREFIX (system dependent)
The location for installation of the library, e.g. /usr/local on some Linux systems.
Directory structure
The source tree consists of the following sub-folders:
- src
Contains all source files. Code is partitioned into modules. Currently eleven modules are present as sub-folders:
- gsCore
- gsMatrix
- gsNurbs
- gsHSplines
- gsModeling
- gsAssembler
- gsSolver
- gsPde
- gsTensor
- gsIO
- gsUtils
-
examples
Examples of usage, small programs and tutorials.
-
unittests
Unittests for some parts of the codebase.
-
filedata
Data files in the XML format the G+Smo can read and write.
-
extensions
Optional additional features that can be compiled along G+Smo.
-
plugins
The plugins for:
- Axel modeler
- Rhinoceros' 3DM
-
cmake
Cmake configuration files.
-
doc
Files related to doxygen documentation.
Third-party repository distribution
- openSUSE Science Project: https://en.opensuse.org/openSUSE:Science_Math
- FreeBSD port: https://www.freshports.org/math/gismo/
- Ubuntu upstream packages: https://launchpad.net/~g+smo/+archive/ubuntu/upstream
Contact and support
-
Wiki pages:
-
Bug reports:
-
Questions (Q&A):
People
Coordinator and maintainer: Angelos Mantzaflaris
See full list in our wiki pages
OS-license
The G+Smo library is distributed under the Mozilla Public License v2.0. (see LICENSE.txt).
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file pygismo-24.8.0.tar.gz
.
File metadata
- Download URL: pygismo-24.8.0.tar.gz
- Upload date:
- Size: 4.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3fcec569e4745c2ac5038ac828fc43201bd1f65b8e43b3365ba95ef8fc852da |
|
MD5 | e94163dec080c4f6d4ff2db65d8a323a |
|
BLAKE2b-256 | 3c6f21f2fe1b99e89e8d73ea6e1677b3ba3aa4950015a03fca18f7c8642af9b5 |
File details
Details for the file pygismo-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9252559fa9202806881c8fd5348cbc4bbb3152e579abf7413ea6cdb1be5e76a5 |
|
MD5 | ebd4caea717665959a5574b30f1647a9 |
|
BLAKE2b-256 | fd8e5c8c92a4a6d18aaf515ed6aa24abf0d7aa994f0a787f95dd4d2b8449c142 |
File details
Details for the file pygismo-24.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c47b0f5976d38b766a237538ecab68955d1bf851526f6ea3955b187c389dbaf |
|
MD5 | a1876a8604aaea13777ac1bc0824b0fc |
|
BLAKE2b-256 | fe01b406dbe0348c500616c788298bba12b09189f21f68e10f942966a611aceb |
File details
Details for the file pygismo-24.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fd7a0a7e9fd85d7d49f548237546f5eece86b61a810d0ccfe551ed62fa55c3f |
|
MD5 | 69e792ef4346ff7901d74683107ce81c |
|
BLAKE2b-256 | b85f157b136cd2a0a1ba505603ab9e4b99c715fc6be171a3d76df58b4e14e0bc |
File details
Details for the file pygismo-24.8.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6471a7fe4d982a8f5206a6e142edf5eaa873f055d7c0a16547900e14e3b95fae |
|
MD5 | 2ae1407a98c9c574cdba279d79c6273c |
|
BLAKE2b-256 | c0328a53acda131f825e02ebfd608bd60bff18d3c1ffe44fd71463a045e3611c |
File details
Details for the file pygismo-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp312-cp312-macosx_10_9_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.12, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e03b2179a4c42c3973d399260d8b91fbd5ee724f745c2b1a8cd953ddcc321d2 |
|
MD5 | f571a7c4e6f6566c71bf0e8bd649db06 |
|
BLAKE2b-256 | b2a0646b87cb9b9f2c52d418049e604a4b96ab7654fdcdada048f5fb13d37fa4 |
File details
Details for the file pygismo-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ef2b1d2c842beb7f1ce560ef65adcb0025c68c6caa2d4e9ad3efe667cf42f05 |
|
MD5 | 8331084153b723ed6d7d88fda4412450 |
|
BLAKE2b-256 | 2640ec2935005784429171a1497f3af0e28e62d47945aa906fbb4edf9739be2c |
File details
Details for the file pygismo-24.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 867d032fb56fead17b12dd4c320159dfae668b7c1cbd535565ecdb0a7f16cc94 |
|
MD5 | b3486310bc01bbb7967a0503964825bc |
|
BLAKE2b-256 | 05296b6cc3925e0d1dc99a925de8832bd7bfc5775d8d82f76c69683afc3024f1 |
File details
Details for the file pygismo-24.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d35b4a2df14500c6f580a42b3d47f09fa7ffea63f5f55bffee499204cc78e07b |
|
MD5 | 28e9e895639a9f581d48f18d7fd3a979 |
|
BLAKE2b-256 | 5352f224794c7a6eb5665ebe600afc7b1dd9f1fa4892b29c31d9c9a4a4cd7fbe |
File details
Details for the file pygismo-24.8.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f58b72c96414856d59ed5a260e17b9c46d7e17e8afbbb37769ba212746d48384 |
|
MD5 | a4ce2331706a0d0d967df4ee07d788d9 |
|
BLAKE2b-256 | 543bdee5068ac3779d5bfc5732794f5f99b3b8687b0a07bf46e5206a8bce4187 |
File details
Details for the file pygismo-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3876c0441ebb71d6572ac26d8a0038fd6df7f9fd9df3836aa5c43d04ffa85348 |
|
MD5 | 91a483131cfe196bd00548fa4ab3700a |
|
BLAKE2b-256 | 6df4f6829e6679bed82d1230cf2cb6db11ced235be00978b21064489bab7074a |
File details
Details for the file pygismo-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 69953b67253966bd24cfe2558e9fc6629de8b1b20a6302149ba929c61bdd5163 |
|
MD5 | cfed9021bd7f43317d7ee569da9defa6 |
|
BLAKE2b-256 | c592a61dd587084d93cdfff50c9e29400dfe93d2e2779e13bf4a96b1f7eeea8b |
File details
Details for the file pygismo-24.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d90807f979e7b2c23f004a9e806058f8f913d69d52fd5e0359064d2d601caa8 |
|
MD5 | 764605b85d669a8101739bcd53c9b21e |
|
BLAKE2b-256 | 493a24f7f9818d942b1001175d4ed1ab22245d2e230945a77610d085f76e7857 |
File details
Details for the file pygismo-24.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2927b1d392a791be555a8bb9cbd67a72a424a436cad568190d14c5c8369928c |
|
MD5 | 9c6e06900d80cae5b601f1af047b10f0 |
|
BLAKE2b-256 | c98d07577095901ec4c50f1ee67d7ebd89af9dca51fd0315ef886d2ad66813ec |
File details
Details for the file pygismo-24.8.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b38b6036f8c72f19c9c743e192999f6dbd703f814b1d47d0bb69b5fc9f2425bb |
|
MD5 | a6ceefbdfc03c945cf9658d9149020c0 |
|
BLAKE2b-256 | 1d041cd4f37f322a7e6a871a5ccbac93180558e908df4eee90515cd01c5110e2 |
File details
Details for the file pygismo-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eec09afda39c00fab4c6a0a5e3c8682d5c9d5e3aebad35c2b72f39a523507e63 |
|
MD5 | 26a872a93b1d29afc7778d2bfbe920b6 |
|
BLAKE2b-256 | 6efc398d6e041ccf48e66ad97aa8a7ee9fdd3d5786e4cfa96d778b8f5ac07593 |
File details
Details for the file pygismo-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1501d162df3732ca016da84ea6b9fcf616cfac1399518cec5439034841a06d1a |
|
MD5 | de5099d48c4284e02caf29a7d6ac2519 |
|
BLAKE2b-256 | 8a68e4ce06671b07eeb43e49e2d11a199eb2eda97567b58fe440052d7c7dc213 |
File details
Details for the file pygismo-24.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc7a0a7d0619bd678eacc5c290a6106e2d0eb58c999f5205a48d6b742e71f42b |
|
MD5 | 39db11529a21adbc1d9430216bc620db |
|
BLAKE2b-256 | c106d325245b0b4899bb3dd7747629572d529c1a4f1932ca0fee9f6085a0fcc6 |
File details
Details for the file pygismo-24.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bff1c8bfae9e6979352eb6b4c4e3b821d280177f0572d815c7d19b7f421ccd0c |
|
MD5 | 5efb34a002b24c6110b248916b58ca3f |
|
BLAKE2b-256 | 78db8ed3851ee0f0572cef792ddb6a84407d48350e236c3a0d3893b18e8f85f9 |
File details
Details for the file pygismo-24.8.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38c26f80765634c85e0f1d1fb602e15d8e0ddb732dcdce3138b129846e9aa4ac |
|
MD5 | c3ea81215e9b96ad1dbcc5debf73d6dd |
|
BLAKE2b-256 | 27db7507f4c3aaebac7eafaeec5be5140a7bc84ef8730f18df506c5de4b94379 |
File details
Details for the file pygismo-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afb332a529546e72bc5a939db92aa6b8067b5bf98293de675a4fcec353fa15f8 |
|
MD5 | b70ea7d2fb15e3c61bcce08a23175978 |
|
BLAKE2b-256 | 9941364b769d17254142880f1254db7bfe285022779ba8beabae3b5078d2d131 |
File details
Details for the file pygismo-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0df62f43df06db4f062e3c2016e6900eed3acc9af40654416933c28dc3dbbc66 |
|
MD5 | 40a326fa2f1236894a123e8a9d68c9f9 |
|
BLAKE2b-256 | 0fe571c0cfa06031061b3958cee81a28b1dc04be740872d049bddcaae1c66127 |
File details
Details for the file pygismo-24.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 6.6 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f13fcffed62373ec8d9f0a50f2cbaa5071a1d5550b46d4e9b5e77cadc5b259b |
|
MD5 | c4c222a7ce8be5437c6c487e1cc0056f |
|
BLAKE2b-256 | 5da4f364e58db6433adb3e9c7f706ebd80fcf44ca15a56c559a138b9a9f53717 |
File details
Details for the file pygismo-24.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 5.5 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e70b78c3ac3d1b1ad5891053d0350f39ba3a3d8df96dd5748d0ee8f876ec752f |
|
MD5 | 9618f8dfdd4e95a3019ce2cae7981160 |
|
BLAKE2b-256 | 484c3c1d8f26d7fb4d2dc17697960ed99be17d9cbf277370fbd880dee315fd2a |
File details
Details for the file pygismo-24.8.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 4.5 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | adbec361b20a50c01aedf2d04055107237530d9aba658fd60bb490118125493d |
|
MD5 | 47f005f5e95cdd1312fb88ec28755ab1 |
|
BLAKE2b-256 | 0c7f157fc162e436dd7b9701ead783178049ab2bb40c88eb53e21d1c1ea4e685 |
File details
Details for the file pygismo-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: pygismo-24.8.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 5.3 MB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62932f12054cb24779d2dff3be4d79c404778f68518c1145339baf7ab9fd013a |
|
MD5 | 820f87296cbd4915c8e3c6f11f8635ac |
|
BLAKE2b-256 | afa5ed3521be0d306f27e38f6f5e2f5e7a819be110060fe12cbb86e9b52b263a |