Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add recipe for jaxsim #24630

Merged
merged 8 commits into from
Feb 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions recipes/jaxsim/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{% set name = "jaxsim" %}
{% set version = "0.1" %}

package:
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/jaxsim-{{ version }}.tar.gz
sha256: 27d0dec121b86c5c4d93d918ca7d782c5fa775e7098d1eb81325f85ba149c093

build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation
number: 0

requirements:
host:
- python >=3.11
- wheel
- setuptools >=64
- setuptools-scm >=8
- pip
run:
- python >=3.11
- coloredlogs
- jax >=0.4.13
- jaxlib
- jaxlie >=1.3.0
- jax-dataclasses >=1.4.0
- pptree
- rod

test:
imports:
- jaxsim
commands:
- pip check
- test "$(pip list | grep jaxsim | awk '{print $2}')" == "$PKG_VERSION"
requires:
- pip

about:
home: https://github.com/ami-iit/jaxsim
summary: A physics engine in reduced coordinates implemented with JAX.
dev_url: https://github.com/ami-iit/jaxsim
license: BSD-3-Clause
license_file: LICENSE

extra:
recipe-maintainers:
- flferretti
- diegoferigo
- traversaro
Loading