Skip to content

Commit

Permalink
[Fix] Restructure for wgit availability as a package (#1018)
Browse files Browse the repository at this point in the history
  • Loading branch information
riohib committed Jun 27, 2022
1 parent 064e886 commit 96fcc1c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fairscale/experimental/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@

from typing import List

from . import nn, optim
from . import nn, optim, wgit

__all__: List[str] = []
3 changes: 3 additions & 0 deletions fairscale/experimental/wgit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.

from typing import List

from .repo import Repo
from .version import __version_tuple__

__version__ = ".".join([str(x) for x in __version_tuple__])
__all__: List[str] = []

0 comments on commit 96fcc1c

Please sign in to comment.