diff --git a/FJUtils.egg-info/PKG-INFO b/FJUtils.egg-info/PKG-INFO index 444fe45..d05eced 100644 --- a/FJUtils.egg-info/PKG-INFO +++ b/FJUtils.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: FJUtils -Version: 0.0.17 +Version: 0.0.18 Home-page: https://github.com/erfanzar/ Author: Erfan Zare Chavoshi Author-email: erfanzare82@yahoo.com diff --git a/FJUtils.egg-info/requires.txt b/FJUtils.egg-info/requires.txt index 37b0886..8d105b4 100644 --- a/FJUtils.egg-info/requires.txt +++ b/FJUtils.egg-info/requires.txt @@ -1,10 +1,9 @@ -jax~=0.4.10 -flax~=0.7.1 -numpy +jax>=0.4.17 +transformers>=4.34.0 typing~=3.7.4.3 -transformers~=4.31.0 -einops~=0.6.1 -optax~=0.1.7 -msgpack~=1.0.5 -tqdm==4.65.0 +numpy +flax>=0.7.3 +optax>=0.1.7 +einops>=0.6.1 +msgpack>=1.0.5 ml_collections diff --git a/requirements.txt b/requirements.txt index 18a878c..161a42b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ +numpy==1.25.2 jax>=0.4.17 transformers>=4.34.0 typing~=3.7.4.3 @@ -6,4 +7,4 @@ flax>=0.7.3 optax>=0.1.7 einops>=0.6.1 msgpack>=1.0.5 -ml_collections \ No newline at end of file +ml_collections diff --git a/setup.py b/setup.py index cabe569..cf8378e 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ url="https://github.com/erfanzar/", packages=setuptools.find_packages(), install_requires=[ + "numpy==1.25.2", "jax>=0.4.17", "transformers>=4.34.0", "typing~=3.7.4.3", @@ -23,7 +24,7 @@ "optax>=0.1.7", "einops>=0.6.1", "msgpack>=1.0.5", - "ml_collections" + "ml_collections", ], python_requires=">=3.7", license='Apache License 2.0',