Skip to content

Commit

Permalink
Update Optax branch.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 598635452
  • Loading branch information
Scenic Authors committed Jan 15, 2024
1 parent 7f3bde0 commit 39808ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
pip intall -e . .[testing]
"""

from distutils import cmd
import os
import urllib.request

from setuptools import Command
from setuptools import find_packages
from setuptools import setup
from setuptools.command import install
Expand All @@ -31,7 +31,7 @@
DATA_UTILS_URL = "https://raw.githubusercontent.com/google-research/simclr/master/tf2/data_util.py"


class DownloadSimCLRAugmentationCommand(cmd.Command):
class DownloadSimCLRAugmentationCommand(Command):
"""Downloads SimCLR data_utils.py as it's not built into an egg."""
description = __doc__
user_options = []
Expand Down Expand Up @@ -65,7 +65,7 @@ def run(self):
"sklearn",
"lingvo==0.12.6",
"seaborn>=0.11.2",
"dmvr @ git+https://github.com/deepmind/dmvr.git",
"dmvr @ git+https://github.com/google-deepmind/dmvr.git",
]

install_requires_core = [
Expand All @@ -80,7 +80,7 @@ def run(self):
"immutabledict>=2.2.1",
"clu>=0.0.6",
"tensorflow-datasets",
"optax @ git+https://github.com/deepmind/optax.git@master",
"optax @ git+https://github.com/google-deepmind/optax.git@main",
]

tests_require = [
Expand Down

0 comments on commit 39808ad

Please sign in to comment.