From 4d2875371b513b91a7422779eb0010279dab0db1 Mon Sep 17 00:00:00 2001 From: Iurii Kemaev Date: Thu, 25 Mar 2021 08:01:53 -0700 Subject: [PATCH] Define MANIFEST.in to include requirements.txt in pypi bundle. Increment the version. PiperOrigin-RevId: 365037116 --- MANIFEST.in | 3 +++ optax/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 000000000..b70061bf7 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include README.md +include LICENSE +include requirements/* diff --git a/optax/__init__.py b/optax/__init__.py index 4a2b648c6..9a67f61d4 100644 --- a/optax/__init__.py +++ b/optax/__init__.py @@ -121,7 +121,7 @@ from optax._src.wrappers import MultiSteps from optax._src.wrappers import MultiStepsState -__version__ = "0.0.5" +__version__ = "0.0.6" __all__ = ( "adabelief",