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
OpenDAS
Torchaudio
Commits
181f0c80
Unverified
Commit
181f0c80
authored
Oct 05, 2021
by
moto
Committed by
GitHub
Oct 05, 2021
Browse files
Rename build_tools to tools (#1812)
parent
1efba850
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
3 additions
and
3 deletions
+3
-3
.circleci/unittest/linux/scripts/run_style_checks.sh
.circleci/unittest/linux/scripts/run_style_checks.sh
+1
-1
setup.py
setup.py
+2
-2
tools/__init__.py
tools/__init__.py
+0
-0
tools/convert_fairseq_models.py
tools/convert_fairseq_models.py
+0
-0
tools/setup_helpers/__init__.py
tools/setup_helpers/__init__.py
+0
-0
tools/setup_helpers/extension.py
tools/setup_helpers/extension.py
+0
-0
tools/travis/install.sh
tools/travis/install.sh
+0
-0
tools/travis/test_script.sh
tools/travis/test_script.sh
+0
-0
No files found.
.circleci/unittest/linux/scripts/run_style_checks.sh
View file @
181f0c80
...
...
@@ -29,7 +29,7 @@ set +e
exit_status
=
0
printf
"
\x
1b[34mRunning flake8:
\x
1b[0m
\n
"
flake8 torchaudio
test
build_
tools/setup_helpers docs/source/conf.py examples
flake8 torchaudio
test
tools/setup_helpers docs/source/conf.py examples
status
=
$?
exit_status
=
"
$((
exit_status+status
))
"
if
[
"
${
status
}
"
-ne
0
]
;
then
...
...
setup.py
View file @
181f0c80
...
...
@@ -6,7 +6,7 @@ from pathlib import Path
from
setuptools
import
setup
,
find_packages
import
distutils.command.clean
from
build_
tools
import
setup_helpers
from
tools
import
setup_helpers
ROOT_DIR
=
Path
(
__file__
).
parent
.
resolve
()
...
...
@@ -81,7 +81,7 @@ setup(
"Topic :: Multimedia :: Sound/Audio"
,
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
packages
=
find_packages
(
exclude
=
[
"build*"
,
"test*"
,
"torchaudio.csrc*"
,
"third_party*"
,
"
build_
tools*"
]),
packages
=
find_packages
(
exclude
=
[
"build*"
,
"test*"
,
"torchaudio.csrc*"
,
"third_party*"
,
"tools*"
]),
ext_modules
=
setup_helpers
.
get_ext_modules
(),
cmdclass
=
{
'build_ext'
:
setup_helpers
.
CMakeBuild
,
...
...
build_
tools/__init__.py
→
tools/__init__.py
View file @
181f0c80
File moved
build_
tools/convert_fairseq_models.py
→
tools/convert_fairseq_models.py
View file @
181f0c80
File moved
build_
tools/setup_helpers/__init__.py
→
tools/setup_helpers/__init__.py
View file @
181f0c80
File moved
build_
tools/setup_helpers/extension.py
→
tools/setup_helpers/extension.py
View file @
181f0c80
File moved
build_
tools/travis/install.sh
→
tools/travis/install.sh
View file @
181f0c80
File moved
build_
tools/travis/test_script.sh
→
tools/travis/test_script.sh
View file @
181f0c80
File moved
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