Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ModelZoo
ResNet50_tensorflow
Commits
e82fd8a3
Commit
e82fd8a3
authored
Sep 15, 2020
by
Zhenyu Tan
Committed by
A. Unique TensorFlower
Sep 15, 2020
Browse files
Fix to setup.py for finding requirements.txt
PiperOrigin-RevId: 331880062
parent
80501b61
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
official/vision/keras_cv/setup.py
official/vision/keras_cv/setup.py
+1
-1
No files found.
official/vision/keras_cv/setup.py
View file @
e82fd8a3
...
@@ -27,7 +27,7 @@ def _get_requirements():
...
@@ -27,7 +27,7 @@ def _get_requirements():
install_requires_tmp
=
[]
install_requires_tmp
=
[]
dependency_links_tmp
=
[]
dependency_links_tmp
=
[]
with
open
(
with
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'.
.
/requirements.txt'
),
'r'
)
as
f
:
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'./requirements.txt'
),
'r'
)
as
f
:
for
line
in
f
:
for
line
in
f
:
package_name
=
line
.
strip
()
package_name
=
line
.
strip
()
# Skip empty line or comments starting with "#".
# Skip empty line or comments starting with "#".
...
...
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