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 dm-acme 0.2.0 (and dm-env 1.3) #11804

Merged
merged 5 commits into from
Nov 19, 2020
Merged
Show file tree
Hide file tree
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
50 changes: 50 additions & 0 deletions recipes/dm-acme/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{% set name = "dm-acme" %}
{% set version = "0.2.0" %}


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

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

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


requirements:
host:
- pip
- python >=3.6
run:
- absl-py
- dm-env
- dm-tree
- numpy
- pillow
- python >=3.6
- wrapt

test:
imports:
- acme
- acme.adders
commands:
- pip check
requires:
- pip

about:
home: https://pypi.org/project/dm-acme
summary: A Python library for Reinforcement Learning.
license: Apache-2.0
license_file: LICENSE
dev_url: https://github.com/deepmind/acme

extra:
recipe-maintainers:
- bollwyvl
49 changes: 49 additions & 0 deletions recipes/dm-env/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{% set name = "dm-env" %}
{% set version = "1.3" %}


package:
name: {{ name }}
version: {{ version }}

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

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

requirements:
host:
- pip
- python >=3.6
run:
- absl-py
- dm-tree
- numpy
- python >=3.6
- six

test:
imports:
- dm_env
commands:
- pip check
- nosetests dm_env
requires:
- pip
- nose

about:
home: https://pypi.org/project/dm-env
summary: A Python interface for Reinforcement Learning environments.
license: Apache-2.0
license_file: LICENSE
dev_url: https://github.com/deepmind/dm_env
doc_url: https://github.com/deepmind/dm_env/blob/{{ version }}/docs/index.md

extra:
recipe-maintainers:
- bollwyvl