Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
fairscale
Commits
291da1ea
Unverified
Commit
291da1ea
authored
Jul 31, 2020
by
msbaines
Committed by
GitHub
Jul 31, 2020
Browse files
[fix] add build dependency on torch (#21)
parent
5a2b5720
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
2 deletions
+8
-2
.gitignore
.gitignore
+3
-0
CHANGELOG.md
CHANGELOG.md
+1
-1
MANIFEST.in
MANIFEST.in
+2
-0
fairscale/__init__.py
fairscale/__init__.py
+1
-1
pyproject.toml
pyproject.toml
+1
-0
No files found.
.gitignore
View file @
291da1ea
...
...
@@ -6,3 +6,6 @@
.mypy_cache/
*.egg-info/
build/
dist/
CHANGELOG.md
View file @
291da1ea
...
...
@@ -4,6 +4,6 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
,
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [0.0.
0
] - 2020-07-31
## [0.0.
1
] - 2020-07-31
-
Initial release.
MANIFEST.in
0 → 100644
View file @
291da1ea
include LICENSE
include requirements.txt
fairscale/__init__.py
View file @
291da1ea
...
...
@@ -3,7 +3,7 @@
# This source code is licensed under the BSD license found in the
# LICENSE file in the root directory of this source tree.
__version__
=
"0.0.
0
"
__version__
=
"0.0.
1
"
################################################################################
# Import most common subpackages
...
...
pyproject.toml
View file @
291da1ea
[build-system]
requires
=
[
"setuptools >= 40.6.2"
,
"torch >= 1.4.0"
,
"wheel >= 0.30.0"
]
build-backend
=
"setuptools.build_meta"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment