fenics-basix


Namefenics-basix JSON
Version 0.9.0 PyPI version JSON
download
home_pagehttps://fenicsproject.org
SummaryBasix Python interface
upload_time2024-10-10 16:24:20
maintainerNone
docs_urlNone
authorFEniCS Steering Council
requires_python>=3.9
licenseMIT License Copyright (c) 2020 FEniCS Project Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Basix

[![Basix CI](https://github.com/FEniCS/basix/actions/workflows/pythonapp.yml/badge.svg)](https://github.com/FEniCS/basix/actions/workflows/pythonapp.yml)
[![Spack install](https://github.com/FEniCS/basix/actions/workflows/spack.yml/badge.svg)](https://github.com/FEniCS/basix/actions/workflows/spack.yml)

Basix is a finite element definition and tabulation runtime library.
Basix allows users to:

- evaluate finite element basis functions and their derivatives at a set
  of points;
- access geometric and topological information about reference cells;
- apply push forward and pull back operations to map data between a
  reference cell and a physical cell;
- permute and transform DOFs to allow higher-order elements to be use on
  arbitrary meshes; and
- interpolate into and between finite element spaces.

Basix includes a range of built-in elements, and also allows the user to
define their own custom elements.

Basix is one of the components of FEniCSx, alongside
[UFL](https://github.com/fenics/ufl),
[FFCx](https://github.com/fenics/ffcx), and
[DOLFINx](https://github.com/fenics/dolfinx).


## Installation

To install Basix:
```console
pip install fenics-basix
```
We currently build binary wheels for Linux and macOS x86-64 architectures.

For advanced and developer installation instructions see the more
detailed [install instructions](INSTALL.md)


## Documentation

Documentation of Basix can be found at
https://docs.fenicsproject.org/basix/main/.


## Support

If you find a bug in Basix, you can report it on the [GitHub issue
tracker](https://github.com/fenics/basix/issues/new?labels=bug).

Questions about using Basix can be asked on the [FEniCS discourse
group](https://fenicsproject.discourse.group/).


## Contributing

Information about how to contribute to Basix can be found
[here](CONTRIBUTING.md).

## Supported elements

### Interval

In Basix, the sub-entities of the reference interval are numbered as
follows:

![The numbering of a reference interval](joss/img/interval_numbering.png)

The following elements are supported on an interval:

  - [Lagrange](https://defelement.com/elements/lagrange.html)
  - [Bubble](https://defelement.com/elements/bubble.html)
  - [Serendipity](https://defelement.com/elements/serendipity.html)
  - [Hermite](https://defelement.com/elements/hermite.html)
  - [iso](https://defelement.com/elements/p1-iso-p2.html)


### Triangle

In Basix, the sub-entities of the reference triangle are numbered as
follows:

![The numbering of a reference triangle](joss/img/triangle_numbering.png)

The following elements are supported on a triangle:

  - [Lagrange](https://defelement.com/elements/lagrange.html)
  - [Nédélec first kind](https://defelement.com/elements/nedelec1.html)
  - [Raviart-Thomas](https://defelement.com/elements/raviart-thomas.html)
  - [Nédélec second kind](https://defelement.com/elements/nedelec2.html)
  - [Brezzi-Douglas-Marini](https://defelement.com/elements/brezzi-douglas-marini.html)
  - [Regge](https://defelement.com/elements/regge.html)
  - [Hellan-Herrmann-Johnson](https://defelement.com/elements/hellan-hermann-johnson.html)
  - [Crouzeix-Raviart](https://defelement.com/elements/crouzeix-raviart.html)
  - [Bubble](https://defelement.com/elements/bubble.html)
  - [Hermite](https://defelement.com/elements/hermite.html)
  - [iso](https://defelement.com/elements/p1-iso-p2.html)


### Quadrilateral

In Basix, the sub-entities of the reference quadrilateral are numbered
as follows:

![The numbering of a reference quadrilateral](joss/img/quadrilateral_numbering.png)

The following elements are supported on a quadrilateral:

  - [Lagrange](https://defelement.com/elements/lagrange.html)
  - [Nédélec first kind](https://defelement.com/elements/nedelec1.html)
  - [Raviart-Thomas](https://defelement.com/elements/qdiv.html)
  - [Nédélec second kind](https://defelement.com/elements/scurl.html)
  - [Brezzi-Douglas-Marini](https://defelement.com/elements/sdiv.html)
  - [Bubble](https://defelement.com/elements/bubble.html)
  - [DPC](https://defelement.com/elements/dpc.html)
  - [Serendipity](https://defelement.com/elements/serendipity.html)
  - [iso](https://defelement.com/elements/p1-iso-p2.html)


### Tetrahedron

In Basix, the sub-entities of the reference tetrahedron are numbered as
follows:

![The numbering of a reference tetrahedron](joss/img/tetrahedron_numbering.png)

The following elements are supported on a tetrahedron:

  - [Lagrange](https://defelement.com/elements/lagrange.html)
  - [Nédélec first kind](https://defelement.com/elements/nedelec1.html)
  - [Raviart-Thomas](https://defelement.com/elements/raviart-thomas.html)
  - [Nédélec second kind](https://defelement.com/elements/nedelec2.html)
  - [Brezzi-Douglas-Marini](https://defelement.com/elements/brezzi-douglas-marini.html)
  - [Regge](https://defelement.com/elements/regge.html)
  - [Crouzeix-Raviart](https://defelement.com/elements/crouzeix-raviart.html)
  - [Bubble](https://defelement.com/elements/bubble.html)
  - [Hermite](https://defelement.com/elements/hermite.html)
  - [iso](https://defelement.com/elements/p1-iso-p2.html)


### Hexahedron

In Basix, the sub-entities of the reference hexahedron are numbered as
follows:

![The numbering of a reference hexahedron](joss/img/hexahedron_numbering.png)

The following elements are supported on a hexahedron:

  - [Lagrange](https://defelement.com/elements/lagrange.html)
  - [Nédélec first kind](https://defelement.com/elements/nedelec1.html)
  - [Raviart-Thomas](https://defelement.com/elements/qdiv.html)
  - [Nédélec second kind](https://defelement.com/elements/scurl.html)
  - [Brezzi-Douglas-Marini](https://defelement.com/elements/sdiv.html)
  - [Bubble](https://defelement.com/elements/bubble.html)
  - [DPC](https://defelement.com/elements/dpc.html)
  - [Serendipity](https://defelement.com/elements/serendipity.html)
  - [iso](https://defelement.com/elements/p1-iso-p2.html)


### Prism

In Basix, the sub-entities of the reference prism are numbered as
follows:

![The numbering of a reference prism](joss/img/prism_numbering.png)

The following elements are supported on a prism:

  - [Lagrange](https://defelement.com/elements/lagrange.html)


### Pyramid

In Basix, the sub-entities of the reference pyramid are numbered as
follows:

![The numbering of a reference pyramid](joss/img/pyramid_numbering.png)

The following elements are supported on a pyramid:

  - [Lagrange](https://defelement.com/elements/lagrange.html)

            

Raw data

            {
    "_id": null,
    "home_page": "https://fenicsproject.org",
    "name": "fenics-basix",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": null,
    "author": "FEniCS Steering Council",
    "author_email": "Unknown <fenics-steering-council@googlegroups.com>",
    "download_url": "https://files.pythonhosted.org/packages/b3/a4/e17745d841d37d05a95533ba71b295d98fe620c4bec6cdd84891b05324ce/fenics_basix-0.9.0.tar.gz",
    "platform": null,
    "description": "# Basix\n\n[![Basix CI](https://github.com/FEniCS/basix/actions/workflows/pythonapp.yml/badge.svg)](https://github.com/FEniCS/basix/actions/workflows/pythonapp.yml)\n[![Spack install](https://github.com/FEniCS/basix/actions/workflows/spack.yml/badge.svg)](https://github.com/FEniCS/basix/actions/workflows/spack.yml)\n\nBasix is a finite element definition and tabulation runtime library.\nBasix allows users to:\n\n- evaluate finite element basis functions and their derivatives at a set\n  of points;\n- access geometric and topological information about reference cells;\n- apply push forward and pull back operations to map data between a\n  reference cell and a physical cell;\n- permute and transform DOFs to allow higher-order elements to be use on\n  arbitrary meshes; and\n- interpolate into and between finite element spaces.\n\nBasix includes a range of built-in elements, and also allows the user to\ndefine their own custom elements.\n\nBasix is one of the components of FEniCSx, alongside\n[UFL](https://github.com/fenics/ufl),\n[FFCx](https://github.com/fenics/ffcx), and\n[DOLFINx](https://github.com/fenics/dolfinx).\n\n\n## Installation\n\nTo install Basix:\n```console\npip install fenics-basix\n```\nWe currently build binary wheels for Linux and macOS x86-64 architectures.\n\nFor advanced and developer installation instructions see the more\ndetailed [install instructions](INSTALL.md)\n\n\n## Documentation\n\nDocumentation of Basix can be found at\nhttps://docs.fenicsproject.org/basix/main/.\n\n\n## Support\n\nIf you find a bug in Basix, you can report it on the [GitHub issue\ntracker](https://github.com/fenics/basix/issues/new?labels=bug).\n\nQuestions about using Basix can be asked on the [FEniCS discourse\ngroup](https://fenicsproject.discourse.group/).\n\n\n## Contributing\n\nInformation about how to contribute to Basix can be found\n[here](CONTRIBUTING.md).\n\n## Supported elements\n\n### Interval\n\nIn Basix, the sub-entities of the reference interval are numbered as\nfollows:\n\n![The numbering of a reference interval](joss/img/interval_numbering.png)\n\nThe following elements are supported on an interval:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n  - [Bubble](https://defelement.com/elements/bubble.html)\n  - [Serendipity](https://defelement.com/elements/serendipity.html)\n  - [Hermite](https://defelement.com/elements/hermite.html)\n  - [iso](https://defelement.com/elements/p1-iso-p2.html)\n\n\n### Triangle\n\nIn Basix, the sub-entities of the reference triangle are numbered as\nfollows:\n\n![The numbering of a reference triangle](joss/img/triangle_numbering.png)\n\nThe following elements are supported on a triangle:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n  - [N\u00e9d\u00e9lec first kind](https://defelement.com/elements/nedelec1.html)\n  - [Raviart-Thomas](https://defelement.com/elements/raviart-thomas.html)\n  - [N\u00e9d\u00e9lec second kind](https://defelement.com/elements/nedelec2.html)\n  - [Brezzi-Douglas-Marini](https://defelement.com/elements/brezzi-douglas-marini.html)\n  - [Regge](https://defelement.com/elements/regge.html)\n  - [Hellan-Herrmann-Johnson](https://defelement.com/elements/hellan-hermann-johnson.html)\n  - [Crouzeix-Raviart](https://defelement.com/elements/crouzeix-raviart.html)\n  - [Bubble](https://defelement.com/elements/bubble.html)\n  - [Hermite](https://defelement.com/elements/hermite.html)\n  - [iso](https://defelement.com/elements/p1-iso-p2.html)\n\n\n### Quadrilateral\n\nIn Basix, the sub-entities of the reference quadrilateral are numbered\nas follows:\n\n![The numbering of a reference quadrilateral](joss/img/quadrilateral_numbering.png)\n\nThe following elements are supported on a quadrilateral:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n  - [N\u00e9d\u00e9lec first kind](https://defelement.com/elements/nedelec1.html)\n  - [Raviart-Thomas](https://defelement.com/elements/qdiv.html)\n  - [N\u00e9d\u00e9lec second kind](https://defelement.com/elements/scurl.html)\n  - [Brezzi-Douglas-Marini](https://defelement.com/elements/sdiv.html)\n  - [Bubble](https://defelement.com/elements/bubble.html)\n  - [DPC](https://defelement.com/elements/dpc.html)\n  - [Serendipity](https://defelement.com/elements/serendipity.html)\n  - [iso](https://defelement.com/elements/p1-iso-p2.html)\n\n\n### Tetrahedron\n\nIn Basix, the sub-entities of the reference tetrahedron are numbered as\nfollows:\n\n![The numbering of a reference tetrahedron](joss/img/tetrahedron_numbering.png)\n\nThe following elements are supported on a tetrahedron:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n  - [N\u00e9d\u00e9lec first kind](https://defelement.com/elements/nedelec1.html)\n  - [Raviart-Thomas](https://defelement.com/elements/raviart-thomas.html)\n  - [N\u00e9d\u00e9lec second kind](https://defelement.com/elements/nedelec2.html)\n  - [Brezzi-Douglas-Marini](https://defelement.com/elements/brezzi-douglas-marini.html)\n  - [Regge](https://defelement.com/elements/regge.html)\n  - [Crouzeix-Raviart](https://defelement.com/elements/crouzeix-raviart.html)\n  - [Bubble](https://defelement.com/elements/bubble.html)\n  - [Hermite](https://defelement.com/elements/hermite.html)\n  - [iso](https://defelement.com/elements/p1-iso-p2.html)\n\n\n### Hexahedron\n\nIn Basix, the sub-entities of the reference hexahedron are numbered as\nfollows:\n\n![The numbering of a reference hexahedron](joss/img/hexahedron_numbering.png)\n\nThe following elements are supported on a hexahedron:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n  - [N\u00e9d\u00e9lec first kind](https://defelement.com/elements/nedelec1.html)\n  - [Raviart-Thomas](https://defelement.com/elements/qdiv.html)\n  - [N\u00e9d\u00e9lec second kind](https://defelement.com/elements/scurl.html)\n  - [Brezzi-Douglas-Marini](https://defelement.com/elements/sdiv.html)\n  - [Bubble](https://defelement.com/elements/bubble.html)\n  - [DPC](https://defelement.com/elements/dpc.html)\n  - [Serendipity](https://defelement.com/elements/serendipity.html)\n  - [iso](https://defelement.com/elements/p1-iso-p2.html)\n\n\n### Prism\n\nIn Basix, the sub-entities of the reference prism are numbered as\nfollows:\n\n![The numbering of a reference prism](joss/img/prism_numbering.png)\n\nThe following elements are supported on a prism:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n\n\n### Pyramid\n\nIn Basix, the sub-entities of the reference pyramid are numbered as\nfollows:\n\n![The numbering of a reference pyramid](joss/img/pyramid_numbering.png)\n\nThe following elements are supported on a pyramid:\n\n  - [Lagrange](https://defelement.com/elements/lagrange.html)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2020 FEniCS Project  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Basix Python interface",
    "version": "0.9.0",
    "project_urls": {
        "Documentation": "https://docs.fenicsproject.org",
        "Homepage": "https://fenicsproject.org",
        "Repository": "https://github.com/fenics/basix.git"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c82e45121784dd738ecf31ca3c1dafdf534e232fbe776b1334546b306c2e8ba3",
                "md5": "5a7057b1df2dc4cc57e83fad88cfcdd4",
                "sha256": "a209721c6d771e8b3f4d3df3dcc461eba939b203808440dbf767867efbf9e34b"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a7057b1df2dc4cc57e83fad88cfcdd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 952975,
            "upload_time": "2024-10-10T16:23:37",
            "upload_time_iso_8601": "2024-10-10T16:23:37.849112Z",
            "url": "https://files.pythonhosted.org/packages/c8/2e/45121784dd738ecf31ca3c1dafdf534e232fbe776b1334546b306c2e8ba3/fenics_basix-0.9.0-cp310-cp310-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb72f2d79e7199d64bfe55ccafe5595c0e7552ca195a7ded026991331de7d2bc",
                "md5": "e1803d946b6d73e0ddd728928c61d208",
                "sha256": "059aacb9522d75a11c599f2ec81e39100a09e32272882f4445a29b0085144ee6"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e1803d946b6d73e0ddd728928c61d208",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 778256,
            "upload_time": "2024-10-10T16:23:39",
            "upload_time_iso_8601": "2024-10-10T16:23:39.832883Z",
            "url": "https://files.pythonhosted.org/packages/bb/72/f2d79e7199d64bfe55ccafe5595c0e7552ca195a7ded026991331de7d2bc/fenics_basix-0.9.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "094145e25aee57a46e3ef8dfc658fc03af8f1e6eceb03e1fe32abf34cd7ef5db",
                "md5": "0b046bc399a463fe705805ce524e8c23",
                "sha256": "297b62cb50028090225434545b9e9f2c43fca0117a6f573112ffb6d157a44592"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0b046bc399a463fe705805ce524e8c23",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 5842484,
            "upload_time": "2024-10-10T16:23:42",
            "upload_time_iso_8601": "2024-10-10T16:23:42.017416Z",
            "url": "https://files.pythonhosted.org/packages/09/41/45e25aee57a46e3ef8dfc658fc03af8f1e6eceb03e1fe32abf34cd7ef5db/fenics_basix-0.9.0-cp310-cp310-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "16c6feedd1acaf31cd188adbee7533244dc50e7d096229462a44f9069401d05b",
                "md5": "d9da4f7a0b6739c2ae9b74bb1a55f9d2",
                "sha256": "684988b8707cfee262c7b8fbbbfdc9074dcdddc883b26bd29a3ba0f2b518a677"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d9da4f7a0b6739c2ae9b74bb1a55f9d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 12954237,
            "upload_time": "2024-10-10T16:23:43",
            "upload_time_iso_8601": "2024-10-10T16:23:43.854080Z",
            "url": "https://files.pythonhosted.org/packages/16/c6/feedd1acaf31cd188adbee7533244dc50e7d096229462a44f9069401d05b/fenics_basix-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98f0be507c22483e302b1474b0436a67c0272b67f5ae8ced6043f7de6369c1c9",
                "md5": "5da2ba29246d1e99a69420d061ce16e3",
                "sha256": "f9bcf23486c08112962f554659ae9b39c84aa882a0804d5ba97f1be27bf99ae6"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5da2ba29246d1e99a69420d061ce16e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.9",
            "size": 6162662,
            "upload_time": "2024-10-10T16:23:46",
            "upload_time_iso_8601": "2024-10-10T16:23:46.212432Z",
            "url": "https://files.pythonhosted.org/packages/98/f0/be507c22483e302b1474b0436a67c0272b67f5ae8ced6043f7de6369c1c9/fenics_basix-0.9.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ec93268c711ffecc476ca9a4236b46de22209390e4213683cfe12d5fe35211f",
                "md5": "261e7e7303cd117f5755451bfbfe341b",
                "sha256": "7e3a991654f13b6ab6d97ee69d17dc66f2904b4ee1fa8e8091731a2087b34ee1"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "261e7e7303cd117f5755451bfbfe341b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 953342,
            "upload_time": "2024-10-10T16:23:48",
            "upload_time_iso_8601": "2024-10-10T16:23:48.109269Z",
            "url": "https://files.pythonhosted.org/packages/6e/c9/3268c711ffecc476ca9a4236b46de22209390e4213683cfe12d5fe35211f/fenics_basix-0.9.0-cp311-cp311-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d14fdbc99cd1d317697c37e94893ecf3b568c33003f60c9e10deedc32f56ae8f",
                "md5": "91f0b3ac2837a4d8e6809869fcc091f9",
                "sha256": "cf7b7ac3fdb078e089d2ffc96520a8d52589062727bd1b2e4f5717f8deac4077"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "91f0b3ac2837a4d8e6809869fcc091f9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 778610,
            "upload_time": "2024-10-10T16:23:50",
            "upload_time_iso_8601": "2024-10-10T16:23:50.228362Z",
            "url": "https://files.pythonhosted.org/packages/d1/4f/dbc99cd1d317697c37e94893ecf3b568c33003f60c9e10deedc32f56ae8f/fenics_basix-0.9.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f85393b841e4daf1cadc1ffe5277637710c486a07c657bdd04340138dfea65c",
                "md5": "3d4187cb5fb02dacd803c4503ca9ca5f",
                "sha256": "4edf3149dae51d752c728456634214f03a3533e3ba1ff5523d63e4ccde8986f4"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3d4187cb5fb02dacd803c4503ca9ca5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 5842820,
            "upload_time": "2024-10-10T16:23:51",
            "upload_time_iso_8601": "2024-10-10T16:23:51.889898Z",
            "url": "https://files.pythonhosted.org/packages/0f/85/393b841e4daf1cadc1ffe5277637710c486a07c657bdd04340138dfea65c/fenics_basix-0.9.0-cp311-cp311-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9132209c3731cf356117ddd9c2f478d51e02d2c7c19656ae8e1c93b885ef90d4",
                "md5": "47b03fc5e6c7509331e8dfd8dd23f446",
                "sha256": "d39f5db765eb2af9f61b123043bb9e03a78d5c15a11d16823b6748c3e6157994"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "47b03fc5e6c7509331e8dfd8dd23f446",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 12954561,
            "upload_time": "2024-10-10T16:23:54",
            "upload_time_iso_8601": "2024-10-10T16:23:54.571720Z",
            "url": "https://files.pythonhosted.org/packages/91/32/209c3731cf356117ddd9c2f478d51e02d2c7c19656ae8e1c93b885ef90d4/fenics_basix-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baafaf2dd767a926e2a2e8f130baa35ace9752328dd7d7331fd94e692c1d58ee",
                "md5": "d5e879139cf84b359903961efdea7d9a",
                "sha256": "a7ace98fc289dcf1db10e4082b7847e1845f8f8953badab862f521a602c51f0b"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d5e879139cf84b359903961efdea7d9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.9",
            "size": 6162556,
            "upload_time": "2024-10-10T16:23:58",
            "upload_time_iso_8601": "2024-10-10T16:23:58.224218Z",
            "url": "https://files.pythonhosted.org/packages/ba/af/af2dd767a926e2a2e8f130baa35ace9752328dd7d7331fd94e692c1d58ee/fenics_basix-0.9.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8e39c65c84f573fa16245cc07f193bc5ddf52ae644d8340ca8c367a9dede4b05",
                "md5": "cb6c43ea502101d04a69f2474cc04228",
                "sha256": "2506f921cbd9db06ae8d4170a733385c6931f31ce49399ac96e2f588ddee2661"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb6c43ea502101d04a69f2474cc04228",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 953242,
            "upload_time": "2024-10-10T16:24:00",
            "upload_time_iso_8601": "2024-10-10T16:24:00.394866Z",
            "url": "https://files.pythonhosted.org/packages/8e/39/c65c84f573fa16245cc07f193bc5ddf52ae644d8340ca8c367a9dede4b05/fenics_basix-0.9.0-cp312-cp312-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94fe868bfaa533899c864da7c70fa72c4f5dde5d17933588dcf21a41da9cca15",
                "md5": "64973c015ca2c3b5b9f48dc01beb7ddd",
                "sha256": "91ee8c9019135873ba8cecdbf8e2cd06ed8719f752a02b39bf76cef974b75402"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "64973c015ca2c3b5b9f48dc01beb7ddd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 778292,
            "upload_time": "2024-10-10T16:24:02",
            "upload_time_iso_8601": "2024-10-10T16:24:02.213352Z",
            "url": "https://files.pythonhosted.org/packages/94/fe/868bfaa533899c864da7c70fa72c4f5dde5d17933588dcf21a41da9cca15/fenics_basix-0.9.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0471d24593b2007774e51aa28dc3ce782d0ecf15af417240e379aaad5a141203",
                "md5": "02334c323b1497dbc6ef2da47f63993f",
                "sha256": "a9745eecca7cd4dea1940f665b2de9b086653858e28c4acf21b22464db334ab4"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "02334c323b1497dbc6ef2da47f63993f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 5841994,
            "upload_time": "2024-10-10T16:24:03",
            "upload_time_iso_8601": "2024-10-10T16:24:03.757014Z",
            "url": "https://files.pythonhosted.org/packages/04/71/d24593b2007774e51aa28dc3ce782d0ecf15af417240e379aaad5a141203/fenics_basix-0.9.0-cp312-cp312-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45ef0e20cbbcd2bffc7446b713db7e3e20cf6f85122ee11761e01b21c240085f",
                "md5": "8341e477c11dba1cae58e7e7ddbab8be",
                "sha256": "1b1dab680321ba4e3111e99b84ab5894dcd23c870b80b9d443004055e65a7cc8"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8341e477c11dba1cae58e7e7ddbab8be",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 12954649,
            "upload_time": "2024-10-10T16:24:05",
            "upload_time_iso_8601": "2024-10-10T16:24:05.977290Z",
            "url": "https://files.pythonhosted.org/packages/45/ef/0e20cbbcd2bffc7446b713db7e3e20cf6f85122ee11761e01b21c240085f/fenics_basix-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c325a70492bb4992b8f3a49ff689f5d35180b9b8f954509fe391eeebc74c4f54",
                "md5": "8e20b8111c886532de5739e5912a90ce",
                "sha256": "aa01b7a2701b2132346e73933afe29a11d7911e7a299d23b5e703721bcacae6e"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8e20b8111c886532de5739e5912a90ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.9",
            "size": 6162335,
            "upload_time": "2024-10-10T16:24:08",
            "upload_time_iso_8601": "2024-10-10T16:24:08.208555Z",
            "url": "https://files.pythonhosted.org/packages/c3/25/a70492bb4992b8f3a49ff689f5d35180b9b8f954509fe391eeebc74c4f54/fenics_basix-0.9.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50d67d3e0ccc00f2a82d23754dae2e3d5162af5427b2b2acc179b135c26c4823",
                "md5": "cbf732940f981ee9e01d8646696df79e",
                "sha256": "2be1d27e3c9d1962bd67015acf4baba3e0329702e04861cb84eaeade108fffbf"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cbf732940f981ee9e01d8646696df79e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 953284,
            "upload_time": "2024-10-10T16:24:10",
            "upload_time_iso_8601": "2024-10-10T16:24:10.525624Z",
            "url": "https://files.pythonhosted.org/packages/50/d6/7d3e0ccc00f2a82d23754dae2e3d5162af5427b2b2acc179b135c26c4823/fenics_basix-0.9.0-cp39-cp39-macosx_10_14_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ba87f110e1705af4b89074b86b14f3c0ec9e51e24b14860967799f6fe441470",
                "md5": "04f7f312678316027558dadaca443487",
                "sha256": "368d828670c72d79b4d2c0bfca425376674bebb8beb85daeb743a6e832bf34e0"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "04f7f312678316027558dadaca443487",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 778392,
            "upload_time": "2024-10-10T16:24:11",
            "upload_time_iso_8601": "2024-10-10T16:24:11.836225Z",
            "url": "https://files.pythonhosted.org/packages/0b/a8/7f110e1705af4b89074b86b14f3c0ec9e51e24b14860967799f6fe441470/fenics_basix-0.9.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ebec2e760b9c8368178c2b45e51825338828bc0dbb120836f1ebc7710dc0bad8",
                "md5": "36602d35c964c98795022bdfd23a1bae",
                "sha256": "cd350d2ea5914f503563c24fb4469b7b2a0ff17a7c989ffa0b6a0ae07a6dabff"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "36602d35c964c98795022bdfd23a1bae",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 5842890,
            "upload_time": "2024-10-10T16:24:14",
            "upload_time_iso_8601": "2024-10-10T16:24:14.018645Z",
            "url": "https://files.pythonhosted.org/packages/eb/ec/2e760b9c8368178c2b45e51825338828bc0dbb120836f1ebc7710dc0bad8/fenics_basix-0.9.0-cp39-cp39-manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6e4fed942135113bf01551b5ca863d99f0662652bb2f72038b6dbd8512189715",
                "md5": "61900b74e0a8715cac70739908602514",
                "sha256": "97b4898b277b22cd7e521babffd98ebb316d102e74dfc9ba5457bdc066792a79"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "has_sig": false,
            "md5_digest": "61900b74e0a8715cac70739908602514",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 12954635,
            "upload_time": "2024-10-10T16:24:16",
            "upload_time_iso_8601": "2024-10-10T16:24:16.609286Z",
            "url": "https://files.pythonhosted.org/packages/6e/4f/ed942135113bf01551b5ca863d99f0662652bb2f72038b6dbd8512189715/fenics_basix-0.9.0-cp39-cp39-manylinux_2_28_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4fa4b19fe52c0d6d5ee2055cdf14f413d4bfe706f4f69dc917d0e5c04a15e2f5",
                "md5": "c147bf441a18320714a5d78c926c61c6",
                "sha256": "eaae53025f1fe96de62208c1b2b382c2c45ef8cd0cd98bc40e826463d80bc3d3"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c147bf441a18320714a5d78c926c61c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.9",
            "size": 6163133,
            "upload_time": "2024-10-10T16:24:18",
            "upload_time_iso_8601": "2024-10-10T16:24:18.725116Z",
            "url": "https://files.pythonhosted.org/packages/4f/a4/b19fe52c0d6d5ee2055cdf14f413d4bfe706f4f69dc917d0e5c04a15e2f5/fenics_basix-0.9.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3a4e17745d841d37d05a95533ba71b295d98fe620c4bec6cdd84891b05324ce",
                "md5": "fd9314f9e4151c550e786d9fab1eebb2",
                "sha256": "2a21e15a8ed8f3a91946752afd058160859a2f5604df65a53b26bc96c32c0ed4"
            },
            "downloads": -1,
            "filename": "fenics_basix-0.9.0.tar.gz",
            "has_sig": false,
            "md5_digest": "fd9314f9e4151c550e786d9fab1eebb2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 635145,
            "upload_time": "2024-10-10T16:24:20",
            "upload_time_iso_8601": "2024-10-10T16:24:20.073315Z",
            "url": "https://files.pythonhosted.org/packages/b3/a4/e17745d841d37d05a95533ba71b295d98fe620c4bec6cdd84891b05324ce/fenics_basix-0.9.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-10 16:24:20",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fenics",
    "github_project": "basix",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fenics-basix"
}
        
Elapsed time: 0.34333s