Merge pull request #260532 from GaetanLepage/jaxtyping

python310Packages.{jaxtyping,equinox}: update
This commit is contained in:
Samuel Ainsworth 2023-10-13 21:08:49 -04:00 committed by GitHub
commit 153d89edda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View File

@ -7,19 +7,20 @@
, jaxtyping
, typing-extensions
, beartype
, optax
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "equinox";
version = "0.10.11";
format = "pyproject";
version = "0.11.1";
pyproject = true;
src = fetchFromGitHub {
owner = "patrick-kidger";
repo = pname;
repo = "equinox";
rev = "refs/tags/v${version}";
hash = "sha256-JffuPplIROPog29FBsWH9cQHSkrFKuXjaTjjEwIqW/0=";
hash = "sha256-iYVAbUIZG90kgWger+M+DZmS/kQ3nEPXQFU+90lHgK0=";
};
nativeBuildInputs = [
@ -35,6 +36,7 @@ buildPythonPackage rec {
nativeCheckInputs = [
beartype
optax
pytestCheckHook
];

View File

@ -16,14 +16,14 @@
let
self = buildPythonPackage rec {
pname = "jaxtyping";
version = "0.2.22";
version = "0.2.23";
pyproject = true;
src = fetchFromGitHub {
owner = "google";
repo = "jaxtyping";
rev = "refs/tags/v${version}";
hash = "sha256-OYx7Eq5jxSGERHsk611+n+Nq2B915gpJLPZYdO7Lt+k=";
hash = "sha256-22dIuIjFgqRmV9AQok02skVt7fm17/WpzBm3FrJ6/zs=";
};
nativeBuildInputs = [