python312Packages.evosax: 0.1.6 -> 0.2.0 (#395323)

This commit is contained in:
Gaétan Lepage 2025-04-02 08:33:16 +02:00 committed by GitHub
commit 56f90ebe3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -27,27 +27,24 @@
buildPythonPackage rec {
pname = "evosax";
version = "0.1.6";
version = "0.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "RobertTLange";
repo = "evosax";
tag = "v.${version}";
hash = "sha256-v8wRiWZlJPF9pIXocQ6/caHl1W4QBNjkmuImJ6MAueo=";
hash = "sha256-ye5IHM8Pn/+BXI9kcB3W281Gna9hXV8DwsaJ9Xu06fU=";
};
build-system = [ setuptools ];
dependencies = [
chex
dotmap
flax
jax
jaxlib
matplotlib
numpy
pyyaml
];
pythonImportsCheck = [ "evosax" ];
@ -66,6 +63,15 @@ buildPythonPackage rec {
"test_env_ffw_rollout"
# Tries to download a data set from the internet
"test_brax_problem_eval"
"test_brax_problem_init"
"test_brax_problem_sample"
"test_gymnax_problem_eval"
"test_gymnax_problem_init"
"test_gymnax_problem_sample"
"test_torchvision_problem_eval"
"test_torchvision_problem_init"
"test_torchvision_problem_sample"
"test_vision_fitness"
];