{ "info": { "author": "Applied Brain Research", "author_email": "info@appliedbrainresearch.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Nengo", "Intended Audience :: Developers", "License :: Free for non-commercial use", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Topic :: Software Development" ], "description": ".. image:: https://img.shields.io/pypi/v/nengo-bones.svg\n :target: https://pypi.org/project/nengo-bones\n :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/travis/nengo/nengo-bones/master.svg\n :target: https://travis-ci.org/nengo/nengo-bones\n :alt: Travis-CI build status\n\n.. image:: https://img.shields.io/codecov/c/github/nengo/nengo-bones/master.svg\n :target: https://codecov.io/gh/nengo/nengo-bones\n :alt: Test coverage\n\n***********\nNengo Bones\n***********\n\nThe aim of this project is to automate the configuration of repositories\nthroughout the Nengo ecosystem. The idea is that we can centralize the\ndesign and maintenance of \"meta\" project code (such as CI testing\ninfrastructure) in this project, rather than each repository maintaining that\ncode independently.\n\nThe basic methodology for this project is a templating system in which\nthere are common templates for meta files that are populated with\ndata in each downstream project. Projects control this templating through the\n``.nengobones.yml`` configuration file, which defines the information used to\nfill in the templates.\n\nWherever possible, we try to do this templating in such a way that downstream\nprojects will be automatically updated when an update is made in\n``nengo-bones``. However, some files cannot be updated automatically and\nrequire downstream repos to manually run a script to update those files.\n\nNote that this repository itself is configured using the ``nengo-bones``\ntemplating system, so if you would like an example of how to use it, check out\n`the source code `__.\n\nInstallation\n============\n\nWe recommend installing ``nengo-bones`` using ``pip``:\n\n.. code-block:: bash\n\n pip install nengo-bones\n\nOr for the latest updates you can perform a developer installation:\n\n.. code-block:: bash\n\n git clone https://github.com/nengo/nengo-bones.git\n pip install -e ./nengo-bones\n\nBasic usage\n===========\n\nThe first step is to fill in the ``.nengobones.yml`` configuration file. You\ncan use the one in this repository as a starting point, or see\n`the documentation\n`__\nfor more details. This file should be\nplaced in the top level of your project.\n\nAll of the manually generated template files can then be rendered by running\nthis command in the same folder as the ``.nengobones.yml`` file:\n\n.. code-block:: bash\n\n bones-generate\n\nSee ``bones-generate --help`` or\n`the documentation `__\nfor a full list of command line options.\n\nDocumentation\n=============\n\n- `Command line usage `_\n- `Demonstration of available configuration options\n `_\n- `API reference `_\n\n***************\nRelease History\n***************\n\n.. Changelog entries should follow this format:\n\n version (release date)\n ======================\n\n **section**\n\n - One-line description of change (link to Github issue/PR)\n\n.. Changes should be organized in one of several sections:\n\n - Added\n - Changed\n - Deprecated\n - Removed\n - Fixed\n\n0.11.1 (April 13, 2020)\n=======================\n\n**Changed**\n\n- Rendered documentation will not be uploaded if the html build fails (it will still\n be uploaded if the linkchecker/doctest builds fail). (`#98`_)\n- Rendered documentation will not be uploaded on cron builds. (`#98`_)\n- Docs script will now clean up the built doc directory before execution, if it exists\n (e.g., because the docs job is being rerun). (`#96`_)\n\n.. _#96: https://github.com/nengo/nengo-bones/pull/96\n.. _#98: https://github.com/nengo/nengo-bones/pull/98\n\n0.11.0 (April 13, 2020)\n=======================\n\n**Added**\n\n- Downstream repos will now be automatically updated when nengo-bones is updated.\n (`#97`_)\n- Added ``slack_notifications`` option to ``.travis.yml`` to enable Slack notifications\n for failing builds. (`#97`_)\n\n**Changed**\n\n- Will now use ``nengo-bones`` and ``nengo-sphinx-theme`` master builds (instead of the\n latest release), to streamline the process of distributing changes to those core\n repos. (`#97`_)\n\n.. _#97: https://github.com/nengo/nengo-bones/pull/97\n\n0.10.0 (March 19, 2020)\n=======================\n\n**Added**\n\n- Added ``autoautosummary_change_modules`` option (for use with\n ``nengo_sphinx_theme.ext.autoautosummary``). (`#86`_)\n\n**Changed**\n\n- Docs script will now use ``nengo_sphinx_theme.ext.backoff``, which adds\n exponential backoff functionality to Sphinx requests. (`#86`_)\n\n.. _#86: https://github.com/nengo/nengo-bones/pull/86\n\n0.9.1 (March 17, 2020)\n======================\n\n**Fixed**\n\n- Fixed deployment tag conditional check in ``.travis.yml`` template. (`#83`_)\n\n.. _#83: https://github.com/nengo/nengo-bones/pull/83\n\n\n0.9.0 (January 28, 2020)\n========================\n\n**Changed**\n\n- The ``bones-check`` that TravisCI does now prints diffs for easier\n debugging. (`#80`_)\n\n**Fixed**\n\n- Fixed an issue with the ``.travis.yml`` template caused by the new\n Jinja2 release. (`#80`_)\n\n.. _#80: https://github.com/nengo/nengo-bones/pull/80\n\n0.8.0 (January 10, 2020)\n========================\n\n**Changed**\n\n- The default distribution used in builds is now ``xenial``. (`#79`_)\n\n.. _#79: https://github.com/nengo/nengo-bones/pull/79\n\n0.7.3 (January 8, 2020)\n=======================\n\n**Removed**\n\n- Removed coverage.py early starting logic. This is no longer necessary as of Nengo\n 3.0 and causes problems with the new coverage.py 5.0 release. (`#78`_)\n\n.. _#78: https://github.com/nengo/nengo-bones/pull/78\n\n0.7.2 (December 2, 2019)\n========================\n\n**Changed**\n\n- Failing to install miniconda in ``remote.sh`` is no longer considered a build\n error (this can occur, for example, when rerunning a build that already has\n miniconda installed). (`#71`_)\n\n.. _#71: https://github.com/nengo/nengo-bones/pull/71\n\n0.7.1 (November 14, 2019)\n=========================\n\n**Added**\n\n- Added support for ``nengo_sphinx_theme.ext.redirects``, which can be used to\n automatically add redirects for renamed documentation pages. (`#68`_)\n\n**Fixed**\n\n- Added locking to ``remote.sh`` script to avoid possible race conditions\n during cleanup. (`#69`_)\n\n.. _#68: https://github.com/nengo/nengo-bones/pull/68\n.. _#69: https://github.com/nengo/nengo-bones/pull/69\n\n0.7.0 (November 7, 2019)\n========================\n\n**Added**\n\n- Added support for ``sphinx.ext.doctest``, which can be used to automatically\n test code snippets in docstrings. (`#67`_)\n\n**Changed**\n\n- Updated the ``black`` version used in ``pre-commit`` hooks. (`#67`_)\n\n.. _#67: https://github.com/nengo/nengo-bones/pull/67\n\n0.6.0 (October 30, 2019)\n========================\n\n**Added**\n\n- Added a ``remote.sh`` CI script template for remotely executing\n commands on an SSH-accessible machine. (`#65`_)\n\n**Fixed**\n\n- Fixed a crash when a file contained the text \"Automatically generated\n by nengo-bones\", but was not present in the config file. (`#61`_, `#66`_)\n\n.. _#61: https://github.com/nengo/nengo-bones/issues/61\n.. _#66: https://github.com/nengo/nengo-bones/pull/66\n.. _#65: https://github.com/nengo/nengo-bones/pull/65\n\n0.5.0 (September 3, 2019)\n=========================\n\n**Added**\n\n- Added ``nengo_simulator``, ``nengo_simloader`` and ``nengo_neurons``\n options to the ``pytest`` section of the ``setup.cfg`` template to\n support testing changes in Nengo 3.0. (`#58`_)\n\n**Changed**\n\n- The default value for ``pytest.addopts`` in ``setup.cfg`` has been removed\n because Nengo 3.0 does not require ``-p nengo.tests.options``. (`#58`_)\n\n.. _#58: https://github.com/nengo/nengo-bones/pull/58\n\n0.4.2 (August 8, 2019)\n======================\n\n**Added**\n\n- Added ``plt_dirname`` option to the ``pytest`` section of the ``setup.cfg``\n template to set the plot directory for pytest-plt. (`#52`_)\n- Added ``plt_filename_drop`` option to the ``pytest`` section of the\n ``setup.cfg`` template to set pruning patterns for pytest-plt. (`#52`_)\n- Added ``rng_salt`` option to the ``pytest`` section of the ``setup.cfg``\n template to set the salt for pytest-rng. (`#55`_)\n\n.. _#52: https://github.com/nengo/nengo-bones/pull/52\n.. _#55: https://github.com/nengo/nengo-bones/pull/55\n\n0.4.1 (July 26, 2019)\n=====================\n\n**Added**\n\n- Added ``allclose_tolerances`` option to the ``pytest`` section of the\n ``setup.cfg`` template to set tolerances for pytest-allclose. (`#47`_)\n\n.. _#47: https://github.com/nengo/nengo-bones/pull/47\n\n0.4.0 (July 26, 2019)\n=====================\n\n**Added**\n\n- Added style guide and release instructions to documentation. (`#44`_)\n- Added templates for ``.pre-commit-config.yaml`` and ``pyproject.toml``\n so downstream repositories can easily adopt Black. (`#49`_)\n\n**Changed**\n\n- We now check that Python source files are autoformatted with Black\n in the ``static.sh`` script. (`#49`_)\n- Templates will now be autoformatted with Black during the rendering\n process, if Black is installed. (`#49`_)\n- Take advantage of multiprocessing to speed up pylint static checks. (`#49`_)\n- The ``E203`` flake8 check and ``bad-continuation`` pylint check are now\n disabled by default. (`#50`_)\n\n.. _#44: https://github.com/nengo/nengo-bones/pull/44\n.. _#49: https://github.com/nengo/nengo-bones/pull/49\n.. _#50: https://github.com/nengo/nengo-bones/pull/50\n\n0.3.0 (July 19, 2019)\n=====================\n\n**Added**\n\n- The ``nengo_bones.templates`` module was added to consolidate code\n that loads and renders templates. (`#45`_)\n\n**Changed**\n\n- The ``docs/conf.py`` template has been updated for new versions of\n Nengo Sphinx Theme. (`#46`_)\n- ``static.sh`` and ``examples.sh`` will now check any notebooks in the\n ``docs`` folder (not just ``docs/examples``). (`#46`_)\n- ``bones-check`` now checks that the content of the generated files\n matches the expected content, rather than relying on version numbers.\n This means most files will not need to be regenerated when new Nengo Bones\n versions are released, and that ``bones-check`` will be sensitive to changes\n within a dev version. (`#45`_)\n\n**Fixed**\n\n- The ``static.sh``/``examples.sh`` script will no longer fail if there are no\n notebooks in the ``docs`` folder. (`#46`_)\n\n.. _#45: https://github.com/nengo/nengo-bones/pull/45\n.. _#46: https://github.com/nengo/nengo-bones/pull/46\n\n0.2.1 (May 24, 2019)\n====================\n\n**Added**\n\n- Added ``codespell_ignore_words`` option to ``static.sh.template``,\n which is a list of words that ``codespell`` will ignore. (`#35`_)\n- Added ``analytics_id`` option to ``docs_conf.py.template``,\n which will enable Google Analytics tracking. (`#35`_)\n\n**Changed**\n\n- ``codespell`` will now ignore ``_vendor`` directories. (`#36`_)\n\n**Fixed**\n\n- Fixed an issue with ``static.sh.template`` in which Python files\n that were not converted from notebooks were deleted. (`#16`_)\n\n.. _#16: https://github.com/nengo/nengo-bones/pull/16\n.. _#35: https://github.com/nengo/nengo-bones/pull/35\n.. _#36: https://github.com/nengo/nengo-bones/pull/36\n\n0.2.0 (May 15, 2019)\n====================\n\n**Added**\n\n- Added ``apt_install`` option that can be set in the ``jobs`` section to\n ``apt install`` any custom ``apt`` requirements for a job. (`#14`_)\n- Added templates for ``CONTRIBUTING.rst``, ``CONTRIBUTORS.rst``,\n ``LICENSE.rst``, ``MANIFEST.in``, ``docs/conf.py``, ``setup.cfg``, and\n ``setup.py`` (`#17`_)\n- Templates will now be automatically loaded from a ``/.templates``\n directory if it exists. When overriding existing templates, the built-in\n templates can be accessed in ``include`` and ``extend`` tags with the\n ``templates/`` prefix. (`#17`_)\n- Added ``flake8`` to the static check script. (`#17`_)\n- Added the ``bones-pr-number`` script to predict the next PR number for a\n repository. This helps when writing a changelog entry before a PR has been\n made. (`#18`_)\n\n**Changed**\n\n- The Python version is now specified by the ``python`` option (instead of\n ``python_version``), for consistency with ``.travis.yml``. (`#14`_)\n- All ``nengo-bones`` scripts now start with ``bones-``, to make them easier\n to find with autocompletion. ``generate-bones`` is now ``bones-generate``,\n and ``check-bones`` is now ``bones-check``. (`#18`_)\n\n**Removed**\n\n- Removed ``conda`` from the CI setup; all installations should be done\n through ``pip`` instead. (`#14`_)\n- Removed the ``--template-dir`` option from the ``generate-bones`` script;\n use a ``.templates`` directory instead. (`#17`_)\n\n**Fixed**\n\n- Order of templated dicts should now be deterministic for\n all Python versions. (`#14`_)\n\n.. _#14: https://github.com/nengo/nengo-bones/pull/14\n.. _#17: https://github.com/nengo/nengo-bones/pull/17\n.. _#18: https://github.com/nengo/nengo-bones/pull/18\n\n0.1.0 (April 15, 2019)\n======================\n\nInitial release of Nengo Bones!\nThanks to all of the contributors for making this possible!\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://www.nengo.ai/nengo-bones", "keywords": "", "license": "Free for non-commercial use", "maintainer": "", "maintainer_email": "", "name": "nengo-bones", "package_url": "https://pypi.org/project/nengo-bones/", "platform": "", "project_url": "https://pypi.org/project/nengo-bones/", "project_urls": { "Homepage": "https://www.nengo.ai/nengo-bones" }, "release_url": "https://pypi.org/project/nengo-bones/0.11.1/", "requires_dist": [ "click (>=7.0)", "jinja2 (>=2.11)", "pyyaml (>=5.1)", "requests (>=2.21)", "black (>=19.3b0) ; python_version >= \"3.6\"" ], "requires_python": ">=3.5", "summary": "Tools for managing Nengo projects", "version": "0.11.1", "yanked": false, "yanked_reason": null }, "last_serial": 8683613, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "7ad1d0abca3d2303c6cfa3899f6a3640", "sha256": "c9c3a9eb712375a6b1dbe6cb93337b8111ff1f66eefd7c05712fa041a95732bf" }, "downloads": -1, "filename": "nengo_bones-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7ad1d0abca3d2303c6cfa3899f6a3640", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 21202, "upload_time": "2019-04-15T16:57:23", "upload_time_iso_8601": "2019-04-15T16:57:23.939178Z", "url": "https://files.pythonhosted.org/packages/1f/f0/06213732ff3bcbeb9350769cd1a02ff9c1b2ba365270caa523012c7b9d11/nengo_bones-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2c41379e876d69ecbce5f2cf644b80e", "sha256": "90e313b4d604c719659d069e53c388f3f9a8dab7a47087fe3ad098b007c1ff99" }, "downloads": -1, "filename": "nengo-bones-0.1.0.tar.gz", "has_sig": false, "md5_digest": "e2c41379e876d69ecbce5f2cf644b80e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28935, "upload_time": "2019-04-15T16:57:25", "upload_time_iso_8601": "2019-04-15T16:57:25.739257Z", "url": "https://files.pythonhosted.org/packages/c6/3b/dce07121a3510d7d297aa32ae77d4f0a7ed85d0f60bd82e0ee60f156389d/nengo-bones-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "dfec52f57ca4e63554442f7b44bd38fc", "sha256": "46bdca3210bb0c7db8feb68ceb8c77b757e9e43f98be336b9a4641595a3ee5b9" }, "downloads": -1, "filename": "nengo_bones-0.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dfec52f57ca4e63554442f7b44bd38fc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43989, "upload_time": "2020-03-19T19:44:47", "upload_time_iso_8601": "2020-03-19T19:44:47.802197Z", "url": "https://files.pythonhosted.org/packages/26/0e/73683920d3f97a9a87db47b14850df16ae2ec958f13a92e07d77bbab4a6e/nengo_bones-0.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "724ac6ef78a84c34c5020183fa41d240", "sha256": "48cac4c28bedcca62c074d2de6580f94ab51d930adf95d60067b72cecc0a80dc" }, "downloads": -1, "filename": "nengo-bones-0.10.0.tar.gz", "has_sig": false, "md5_digest": "724ac6ef78a84c34c5020183fa41d240", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 57283, "upload_time": "2020-03-19T19:44:49", "upload_time_iso_8601": "2020-03-19T19:44:49.189172Z", "url": "https://files.pythonhosted.org/packages/67/51/279a175442c6211820ea13d90377d83786349045bdbb539d6bf9ea8e8860/nengo-bones-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "8aee33a92d14c875679d49937c024707", "sha256": "1e5c38138049fe751bbce39c6566fecba7c5927c2f4001a5e31cb97e41579110" }, "downloads": -1, "filename": "nengo_bones-0.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "8aee33a92d14c875679d49937c024707", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 44287, "upload_time": "2020-04-13T15:20:06", "upload_time_iso_8601": "2020-04-13T15:20:06.643790Z", "url": "https://files.pythonhosted.org/packages/18/74/e21689bedbb8ead6b1ac90f5bccff61d351cf7d34d61701a406518c13860/nengo_bones-0.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ca67dee07d508e1ec1d5e1bc6d39bca4", "sha256": "7261485567bf0dcab075e386857634d6c801eb768e3a2c204adf09e122025fa1" }, "downloads": -1, "filename": "nengo-bones-0.11.0.tar.gz", "has_sig": false, "md5_digest": "ca67dee07d508e1ec1d5e1bc6d39bca4", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59336, "upload_time": "2020-04-13T15:20:08", "upload_time_iso_8601": "2020-04-13T15:20:08.107586Z", "url": "https://files.pythonhosted.org/packages/09/b6/32fd57966db79d65109d980b29535ff66d3a84dd6825579d9c2f5b83b3bb/nengo-bones-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "fe86984af3344a3291e54beb762b6ae5", "sha256": "43f199f83979ff2fdf6395a32707f998210ae63861fd13c7560f20a070997dfd" }, "downloads": -1, "filename": "nengo_bones-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fe86984af3344a3291e54beb762b6ae5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 44559, "upload_time": "2020-04-13T16:41:29", "upload_time_iso_8601": "2020-04-13T16:41:29.097532Z", "url": "https://files.pythonhosted.org/packages/91/d6/d608a3d3726f005b5d32ecde97f82defb6202956a1abd843857c78d2fcda/nengo_bones-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cec4092aaac405df257dfccc54cf5a6", "sha256": "c8380b60c408a679e233812b97fd5c5ed16b57e4c837d754868d054a59c522e1" }, "downloads": -1, "filename": "nengo-bones-0.11.1.tar.gz", "has_sig": false, "md5_digest": "0cec4092aaac405df257dfccc54cf5a6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59772, "upload_time": "2020-04-13T16:41:30", "upload_time_iso_8601": "2020-04-13T16:41:30.375141Z", "url": "https://files.pythonhosted.org/packages/c3/16/fd76443a9a86e1f235f269817957cf177ae1b9ec73c9132c98aef817a34a/nengo-bones-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "f9e11799b4791ae77e832bfdef7e6129", "sha256": "3fbd08ab130266c6471639f736085c2cd60d5628b531eb8cd4f480aba26e1545" }, "downloads": -1, "filename": "nengo_bones-0.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f9e11799b4791ae77e832bfdef7e6129", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 35611, "upload_time": "2019-05-17T01:42:37", "upload_time_iso_8601": "2019-05-17T01:42:37.413229Z", "url": "https://files.pythonhosted.org/packages/65/62/adf0a8e298bb5ba4f069a56ac7dc9048076a66618e4aaab85c3c290e553b/nengo_bones-0.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c31144ead44cf8e1b902c4c667a21afe", "sha256": "2aee458f6f44f75e45adb0295c69a62ad574b3893225ab86332d693ef7301e64" }, "downloads": -1, "filename": "nengo-bones-0.2.0.tar.gz", "has_sig": false, "md5_digest": "c31144ead44cf8e1b902c4c667a21afe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 46228, "upload_time": "2019-05-17T01:42:39", "upload_time_iso_8601": "2019-05-17T01:42:39.072721Z", "url": "https://files.pythonhosted.org/packages/87/25/b9b06d1ebc01b7854f3e519dee0f8fe090b3331e054810bbc368d7448840/nengo-bones-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "0fd47df7511441edf96b3021ef59856d", "sha256": "a999fc2b4ef91c362f9fe7134c081dad03b5760afa45e8fbafa99b9c49975f7d" }, "downloads": -1, "filename": "nengo_bones-0.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0fd47df7511441edf96b3021ef59856d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 36012, "upload_time": "2019-05-24T20:37:04", "upload_time_iso_8601": "2019-05-24T20:37:04.780021Z", "url": "https://files.pythonhosted.org/packages/1c/1c/590f169808d80faf12377e6df620b12641a4d9c61fa85bf354d1840ce937/nengo_bones-0.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ccbb9acf3c572255bab5cbe6b768f87f", "sha256": "fbeddcc19865e8c26cda077ad2122feb07bc3bac122a8f6abc2e97834f9d234c" }, "downloads": -1, "filename": "nengo-bones-0.2.1.tar.gz", "has_sig": false, "md5_digest": "ccbb9acf3c572255bab5cbe6b768f87f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 47155, "upload_time": "2019-05-24T20:37:06", "upload_time_iso_8601": "2019-05-24T20:37:06.459391Z", "url": "https://files.pythonhosted.org/packages/64/37/2f6cf9e0ba6b9d7b045dc48dab8629f1abd30afc71972b0225af4b24adf3/nengo-bones-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "9e0d72ba872c8c54eed5f8499dedc888", "sha256": "ce2bf458f04a5abb80b185de80e1b1284372aa8588f63fc66e5eb04b3e61e3c4" }, "downloads": -1, "filename": "nengo_bones-0.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9e0d72ba872c8c54eed5f8499dedc888", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 37762, "upload_time": "2019-07-19T15:52:23", "upload_time_iso_8601": "2019-07-19T15:52:23.870559Z", "url": "https://files.pythonhosted.org/packages/e3/c8/8174bc16d7e4205ab6b06ab1c63f002817af60e4d0c93bc9d802d185efa4/nengo_bones-0.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef76bb805d08ff2ce9495fafc55b416c", "sha256": "8104d4b62f16e6d70829c82b01937d5cebafa64f852864c81f237a20e9a691ab" }, "downloads": -1, "filename": "nengo-bones-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ef76bb805d08ff2ce9495fafc55b416c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 48351, "upload_time": "2019-07-19T15:52:25", "upload_time_iso_8601": "2019-07-19T15:52:25.637402Z", "url": "https://files.pythonhosted.org/packages/4e/31/c18400a4666c3067993fb49c59a96c8a7fd20d35042be2cbd232a4103559/nengo-bones-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "d5fae53cbf12e75bf15f130dd586e29f", "sha256": "cecd7af0ef9cab1cf248d7100c174f3f4ccc3eb7c106113520fef7ca06af0de3" }, "downloads": -1, "filename": "nengo_bones-0.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d5fae53cbf12e75bf15f130dd586e29f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 39960, "upload_time": "2019-07-26T15:57:35", "upload_time_iso_8601": "2019-07-26T15:57:35.350785Z", "url": "https://files.pythonhosted.org/packages/fb/1b/8a9df9f3334c80bb421334b7e6dc45123f56b4fe8ecf8a3eacf8ca027b24/nengo_bones-0.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4f985c80952ddd10ff45d11aae5ee5ef", "sha256": "7860fb8a9e93f47479a968925b591bc983eafc333441772c27db7b5f07b92885" }, "downloads": -1, "filename": "nengo-bones-0.4.0.tar.gz", "has_sig": false, "md5_digest": "4f985c80952ddd10ff45d11aae5ee5ef", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 54589, "upload_time": "2019-07-26T15:57:37", "upload_time_iso_8601": "2019-07-26T15:57:37.127079Z", "url": "https://files.pythonhosted.org/packages/bf/63/d61f6de99aab7282efd1fce5e695a87bd20b1ef96185639ac321208212b3/nengo-bones-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "2705e51d84e66da47edfb88ee5cb137e", "sha256": "1653f9b4d6419879564a6e090e69261c2779eda65d17eef8e1dab1c36a7c1c75" }, "downloads": -1, "filename": "nengo_bones-0.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2705e51d84e66da47edfb88ee5cb137e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 40192, "upload_time": "2019-07-26T23:02:56", "upload_time_iso_8601": "2019-07-26T23:02:56.073860Z", "url": "https://files.pythonhosted.org/packages/52/62/4f61a76855808e50901e226b19ecf7b9059f28461cc11c1e7c74bd8262e8/nengo_bones-0.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "684ebd65c59429dd0742af7d9025fe26", "sha256": "218a2afea22fb72372c165b04c08f68018e6ae06796623c9ca86a8bdbc4bd7ab" }, "downloads": -1, "filename": "nengo-bones-0.4.1.tar.gz", "has_sig": false, "md5_digest": "684ebd65c59429dd0742af7d9025fe26", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 54928, "upload_time": "2019-07-26T23:02:57", "upload_time_iso_8601": "2019-07-26T23:02:57.403105Z", "url": "https://files.pythonhosted.org/packages/43/ac/eeaaaf3180f65b2923c8833f9918ff6b13683d7c09540ee41a66e64caafb/nengo-bones-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "f44a1c2ebfe9aadcbe1e737aa2ec1ed1", "sha256": "c8e4f564b00ef426b0a1c0631095484285952374a2c0134fff8d5c133bbf9243" }, "downloads": -1, "filename": "nengo_bones-0.4.2-py3-none-any.whl", "has_sig": false, "md5_digest": "f44a1c2ebfe9aadcbe1e737aa2ec1ed1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 40540, "upload_time": "2019-08-08T14:30:50", "upload_time_iso_8601": "2019-08-08T14:30:50.200209Z", "url": "https://files.pythonhosted.org/packages/39/7e/f0953fa632d9934732833bcfd01dcc4134c15127f0d033eace09065acf35/nengo_bones-0.4.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "81551ad586477a3157af265e21aa039f", "sha256": "4028ad4391fe9df52d454e72fbd06b3f4c45b2f83557490a31ac374e5560e097" }, "downloads": -1, "filename": "nengo-bones-0.4.2.tar.gz", "has_sig": false, "md5_digest": "81551ad586477a3157af265e21aa039f", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 55649, "upload_time": "2019-08-08T14:30:51", "upload_time_iso_8601": "2019-08-08T14:30:51.655498Z", "url": "https://files.pythonhosted.org/packages/ad/d8/bc73ecc56ba4e7fdaf5b799e9907571a5659bf5c9afa7d68dd1415362876/nengo-bones-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "43d6603aaad31cd01d29b452d86c8980", "sha256": "9ff1a9f702bb9a3d6410e5093d7dae5cacc7351df3dd947f17fd74eef187b03f" }, "downloads": -1, "filename": "nengo_bones-0.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "43d6603aaad31cd01d29b452d86c8980", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 40936, "upload_time": "2019-09-03T16:38:02", "upload_time_iso_8601": "2019-09-03T16:38:02.519394Z", "url": "https://files.pythonhosted.org/packages/b4/91/c9ff0ee4968de906258e564e6bd527bc7c7e7f76b8a6fd95a32910ec1e8e/nengo_bones-0.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8bd745a5f076a1cca7840c67fbbd30ce", "sha256": "24031f29edb6d5a85526f0b4f33375bea83356b1e334dd384e822f36f1eb4590" }, "downloads": -1, "filename": "nengo-bones-0.5.0.tar.gz", "has_sig": false, "md5_digest": "8bd745a5f076a1cca7840c67fbbd30ce", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 56264, "upload_time": "2019-09-03T16:38:03", "upload_time_iso_8601": "2019-09-03T16:38:03.966508Z", "url": "https://files.pythonhosted.org/packages/0b/35/0b1c3034daee65c546c1f6bbe3263654803f8be1c5a7e5df5040d3c9b16c/nengo-bones-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "a5759b690b297ccbfb44e52efe2acf6f", "sha256": "7803cb24dd2f6f63ddde656772ffb2735aecb35993fe3a2bb80e0cdae531d641" }, "downloads": -1, "filename": "nengo_bones-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a5759b690b297ccbfb44e52efe2acf6f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43051, "upload_time": "2019-10-30T14:34:52", "upload_time_iso_8601": "2019-10-30T14:34:52.357103Z", "url": "https://files.pythonhosted.org/packages/f7/86/ae12144794f978af55577051bb32bb879fc1e98248323105dacede7c70bd/nengo_bones-0.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8309623b2f02b8c77629936483772c8b", "sha256": "5553217a5ae33603b737b8c7127a0176ef0790ffef3cbda86261e7b748214f9f" }, "downloads": -1, "filename": "nengo-bones-0.6.0.tar.gz", "has_sig": false, "md5_digest": "8309623b2f02b8c77629936483772c8b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 58405, "upload_time": "2019-10-30T14:34:53", "upload_time_iso_8601": "2019-10-30T14:34:53.730962Z", "url": "https://files.pythonhosted.org/packages/f9/47/7cb367b788770bb11a69e1ec2bd1d62279cd126b616294f3e75e8f69a8a5/nengo-bones-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "967a3f8bc9b396c00c115f6e2110013d", "sha256": "6d72d90b5eab774334c5020adee76f23b574b6993f5f1ac95842a2bfdf7bb3eb" }, "downloads": -1, "filename": "nengo_bones-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "967a3f8bc9b396c00c115f6e2110013d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43276, "upload_time": "2019-11-07T15:40:28", "upload_time_iso_8601": "2019-11-07T15:40:28.870783Z", "url": "https://files.pythonhosted.org/packages/15/9e/e5feb5afe99d78e512832ce2a060b0e4099df34eb85a00c86be5af7a8ba0/nengo_bones-0.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e8ff69a38d3255ec0acbdca000188cb", "sha256": "1ee4e2da6ae699b50af559622f1dd90739607f60673e1c262745e08121d8a36a" }, "downloads": -1, "filename": "nengo-bones-0.7.0.tar.gz", "has_sig": false, "md5_digest": "4e8ff69a38d3255ec0acbdca000188cb", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 58890, "upload_time": "2019-11-07T15:40:30", "upload_time_iso_8601": "2019-11-07T15:40:30.714694Z", "url": "https://files.pythonhosted.org/packages/e1/39/964fe0c3ebe4080cfb96ec8c33cb6d2e2c3b1a7363e0677a6044b47ca6e1/nengo-bones-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "3d65dc0bcd831ee94b6a267f1ab177a4", "sha256": "cd20f8431ade00258ec262c9e6bbec3444e463b5d23904813a3a5f5f37e7583f" }, "downloads": -1, "filename": "nengo_bones-0.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3d65dc0bcd831ee94b6a267f1ab177a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43485, "upload_time": "2019-11-14T19:34:51", "upload_time_iso_8601": "2019-11-14T19:34:51.242786Z", "url": "https://files.pythonhosted.org/packages/b1/11/ae1e30ac197f902326fea471d0a220a8e8404cddb0564774da100be8c3cd/nengo_bones-0.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cfcf6da0b1a89cf80e91ae8f4915d647", "sha256": "2f8df5b3f06b2156726db14d93d167ea2f1553475300cbd420e55bae0d4c3c22" }, "downloads": -1, "filename": "nengo-bones-0.7.1.tar.gz", "has_sig": false, "md5_digest": "cfcf6da0b1a89cf80e91ae8f4915d647", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59335, "upload_time": "2019-11-14T19:34:53", "upload_time_iso_8601": "2019-11-14T19:34:53.020646Z", "url": "https://files.pythonhosted.org/packages/56/61/c8f242f8c70630a5b0ca2e3b0b8f7a3eb0e47dad3bed79c48cca7198b06f/nengo-bones-0.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "9ea5dda495ba782fc0247fa2b2c4755a", "sha256": "550b9d5bf3e52e025512eb272b6741166e8a8e7532b8fdb2957ac102c5705df6" }, "downloads": -1, "filename": "nengo_bones-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "9ea5dda495ba782fc0247fa2b2c4755a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43586, "upload_time": "2019-12-02T15:15:48", "upload_time_iso_8601": "2019-12-02T15:15:48.414388Z", "url": "https://files.pythonhosted.org/packages/51/e7/bbd3299ae453301fd2ae1e3857eb838d7b8687002820d5c7075192d91380/nengo_bones-0.7.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8844056a8dd36381aadd12a050ad789b", "sha256": "fb03463ca114e4aebcc7b5ad9c942a1cd88ec5ae2c1712cea0f85d6665b8db65" }, "downloads": -1, "filename": "nengo-bones-0.7.2.tar.gz", "has_sig": false, "md5_digest": "8844056a8dd36381aadd12a050ad789b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59540, "upload_time": "2019-12-02T15:15:49", "upload_time_iso_8601": "2019-12-02T15:15:49.853449Z", "url": "https://files.pythonhosted.org/packages/e6/33/099b9293a563b2ec4f5392ce0ac4c187c1a9c4f1893383f58d4e3e224a9c/nengo-bones-0.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "39cce80c04101d10acc49ac1486bb0e7", "sha256": "3acf537cb7d1c98787b2d807aba47eed2edfb335c6c139a75961a2a42e8eeccc" }, "downloads": -1, "filename": "nengo_bones-0.7.3-py3-none-any.whl", "has_sig": false, "md5_digest": "39cce80c04101d10acc49ac1486bb0e7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43577, "upload_time": "2020-01-08T15:31:47", "upload_time_iso_8601": "2020-01-08T15:31:47.388866Z", "url": "https://files.pythonhosted.org/packages/30/36/95a546979463ab28ede7eb0d5c4f2c00ed4099b2019f91df36a25c0ac0d8/nengo_bones-0.7.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ae7a2e5ccf2d76b62bcb4502c45924f5", "sha256": "fc9ce8d3c9a139bfff5594e9ab765bc5c70d04d89993d784dad864ca27443f40" }, "downloads": -1, "filename": "nengo-bones-0.7.3.tar.gz", "has_sig": false, "md5_digest": "ae7a2e5ccf2d76b62bcb4502c45924f5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59601, "upload_time": "2020-01-08T15:31:49", "upload_time_iso_8601": "2020-01-08T15:31:49.414941Z", "url": "https://files.pythonhosted.org/packages/b4/5f/7c841b1c3fe7db9d603d42120dc60648c9e0c5f350fc4496835162530a3e/nengo-bones-0.7.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "44f24f4ddda9364e911d4daac0985fba", "sha256": "0d072f2784351af8133d7795bd348bcc04c34c22d61cafcef63157d64860f0dd" }, "downloads": -1, "filename": "nengo_bones-0.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "44f24f4ddda9364e911d4daac0985fba", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43640, "upload_time": "2020-01-10T16:09:11", "upload_time_iso_8601": "2020-01-10T16:09:11.412688Z", "url": "https://files.pythonhosted.org/packages/33/35/cc069f2f41b8ff425bd375f00f04ff5eee4f7ff822d0943c989fffe104e5/nengo_bones-0.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f98165d39d3747c0bd394d97a0663930", "sha256": "43b01a17930e0e0077df13398741a2bb006de230682ecd2de5fcbcf4f1e0f566" }, "downloads": -1, "filename": "nengo-bones-0.8.0.tar.gz", "has_sig": false, "md5_digest": "f98165d39d3747c0bd394d97a0663930", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 58258, "upload_time": "2020-01-10T16:09:14", "upload_time_iso_8601": "2020-01-10T16:09:14.375555Z", "url": "https://files.pythonhosted.org/packages/d7/02/1cf2ec95e91c69a60fd76049eccf2f8d9736ea8164d2de10b24d2841fadd/nengo-bones-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "b507a312af81132853b6edb761411881", "sha256": "c03966c0a2a9a373e08063cb267f3bc417c8ec4e7146bd7279e716a7e9e8f434" }, "downloads": -1, "filename": "nengo_bones-0.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b507a312af81132853b6edb761411881", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43738, "upload_time": "2020-01-28T17:24:16", "upload_time_iso_8601": "2020-01-28T17:24:16.532630Z", "url": "https://files.pythonhosted.org/packages/f2/e0/9da13a0914f7be342150427a656c065f58109aa7dece6a7c764723b63158/nengo_bones-0.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f0fe52fb76bef678ffebe6056a193ca", "sha256": "bc7efe3f624ed5514c2ce3b28c68f1d8b32ae2ce255a1caa024b2c334587bf54" }, "downloads": -1, "filename": "nengo-bones-0.9.0.tar.gz", "has_sig": false, "md5_digest": "8f0fe52fb76bef678ffebe6056a193ca", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 58488, "upload_time": "2020-01-28T17:24:17", "upload_time_iso_8601": "2020-01-28T17:24:17.953889Z", "url": "https://files.pythonhosted.org/packages/39/c1/e2eb0d5185ba73ac09cd070516fec639277097d9ddedd0ab446431d74e22/nengo-bones-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "b2e0d865376d9f26dd4ab47002a6341a", "sha256": "d51c018a1be0407a8b87ddd3804debde818510c2f6aa1a251ee656e69146e964" }, "downloads": -1, "filename": "nengo_bones-0.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "b2e0d865376d9f26dd4ab47002a6341a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 43778, "upload_time": "2020-03-17T13:56:52", "upload_time_iso_8601": "2020-03-17T13:56:52.107188Z", "url": "https://files.pythonhosted.org/packages/87/65/7031b5efebb6950275033864199effcde8125365d97824e2feac49a7bd8a/nengo_bones-0.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "46d45fefd445bf58079c35e611a2e753", "sha256": "7bb2aaa1fa6385e340fe3684c3e20d7aa753c8be59ea4f37b7b876aca1da0ca5" }, "downloads": -1, "filename": "nengo-bones-0.9.1.tar.gz", "has_sig": false, "md5_digest": "46d45fefd445bf58079c35e611a2e753", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 56835, "upload_time": "2020-03-17T13:56:53", "upload_time_iso_8601": "2020-03-17T13:56:53.802623Z", "url": "https://files.pythonhosted.org/packages/67/9d/b33955625b42f4c9ead008e619a129156d01f9b384e48d3bc5e6a80cb134/nengo-bones-0.9.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fe86984af3344a3291e54beb762b6ae5", "sha256": "43f199f83979ff2fdf6395a32707f998210ae63861fd13c7560f20a070997dfd" }, "downloads": -1, "filename": "nengo_bones-0.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "fe86984af3344a3291e54beb762b6ae5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.5", "size": 44559, "upload_time": "2020-04-13T16:41:29", "upload_time_iso_8601": "2020-04-13T16:41:29.097532Z", "url": "https://files.pythonhosted.org/packages/91/d6/d608a3d3726f005b5d32ecde97f82defb6202956a1abd843857c78d2fcda/nengo_bones-0.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0cec4092aaac405df257dfccc54cf5a6", "sha256": "c8380b60c408a679e233812b97fd5c5ed16b57e4c837d754868d054a59c522e1" }, "downloads": -1, "filename": "nengo-bones-0.11.1.tar.gz", "has_sig": false, "md5_digest": "0cec4092aaac405df257dfccc54cf5a6", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.5", "size": 59772, "upload_time": "2020-04-13T16:41:30", "upload_time_iso_8601": "2020-04-13T16:41:30.375141Z", "url": "https://files.pythonhosted.org/packages/c3/16/fd76443a9a86e1f235f269817957cf177ae1b9ec73c9132c98aef817a34a/nengo-bones-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }