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
14cc5c05
"docs/vscode:/vscode.git/clone" did not exist on "babc24af6d9bc55c62a4be83f27295961ee0cb42"
Unverified
Commit
14cc5c05
authored
Apr 23, 2020
by
moto
Committed by
GitHub
Apr 23, 2020
Browse files
Stop build binary for Python3.5 (#577)
parent
33414c74
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
85 deletions
+1
-85
.circleci/config.yml
.circleci/config.yml
+0
-84
.circleci/regenerate.py
.circleci/regenerate.py
+1
-1
No files found.
.circleci/config.yml
View file @
14cc5c05
...
...
@@ -237,9 +237,6 @@ workflows:
build
:
jobs
:
-
circleci_consistency
-
binary_linux_wheel
:
name
:
binary_linux_wheel_py3.5
python_version
:
'
3.5'
-
binary_linux_wheel
:
name
:
binary_linux_wheel_py3.6
python_version
:
'
3.6'
...
...
@@ -249,9 +246,6 @@ workflows:
-
binary_linux_wheel
:
name
:
binary_linux_wheel_py3.8
python_version
:
'
3.8'
-
binary_macos_wheel
:
name
:
binary_macos_wheel_py3.5
python_version
:
'
3.5'
-
binary_macos_wheel
:
name
:
binary_macos_wheel_py3.6
python_version
:
'
3.6'
...
...
@@ -261,9 +255,6 @@ workflows:
-
binary_macos_wheel
:
name
:
binary_macos_wheel_py3.8
python_version
:
'
3.8'
-
binary_linux_conda
:
name
:
binary_linux_conda_py3.5
python_version
:
'
3.5'
-
binary_linux_conda
:
name
:
binary_linux_conda_py3.6
python_version
:
'
3.6'
...
...
@@ -273,9 +264,6 @@ workflows:
-
binary_linux_conda
:
name
:
binary_linux_conda_py3.8
python_version
:
'
3.8'
-
binary_macos_conda
:
name
:
binary_macos_conda_py3.5
python_version
:
'
3.5'
-
binary_macos_conda
:
name
:
binary_macos_conda_py3.6
python_version
:
'
3.6'
...
...
@@ -292,28 +280,6 @@ workflows:
nightly
:
jobs
:
-
circleci_consistency
-
binary_linux_wheel
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_wheel_py3.5
python_version
:
'
3.5'
-
binary_wheel_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_wheel_py3.5_upload
requires
:
-
nightly_binary_linux_wheel_py3.5
-
smoke_test_linux_pip
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_wheel_py3.5_smoke_test_pip
python_version
:
'
3.5'
requires
:
-
nightly_binary_linux_wheel_py3.5_upload
-
binary_linux_wheel
:
filters
:
branches
:
...
...
@@ -380,20 +346,6 @@ workflows:
python_version
:
'
3.8'
requires
:
-
nightly_binary_linux_wheel_py3.8_upload
-
binary_macos_wheel
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_macos_wheel_py3.5
python_version
:
'
3.5'
-
binary_wheel_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_macos_wheel_py3.5_upload
requires
:
-
nightly_binary_macos_wheel_py3.5
-
binary_macos_wheel
:
filters
:
branches
:
...
...
@@ -436,28 +388,6 @@ workflows:
name
:
nightly_binary_macos_wheel_py3.8_upload
requires
:
-
nightly_binary_macos_wheel_py3.8
-
binary_linux_conda
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_conda_py3.5
python_version
:
'
3.5'
-
binary_conda_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_conda_py3.5_upload
requires
:
-
nightly_binary_linux_conda_py3.5
-
smoke_test_linux_conda
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_linux_conda_py3.5_smoke_test_conda
python_version
:
'
3.5'
requires
:
-
nightly_binary_linux_conda_py3.5_upload
-
binary_linux_conda
:
filters
:
branches
:
...
...
@@ -524,20 +454,6 @@ workflows:
python_version
:
'
3.8'
requires
:
-
nightly_binary_linux_conda_py3.8_upload
-
binary_macos_conda
:
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_macos_conda_py3.5
python_version
:
'
3.5'
-
binary_conda_upload
:
context
:
org-member
filters
:
branches
:
only
:
nightly
name
:
nightly_binary_macos_conda_py3.5_upload
requires
:
-
nightly_binary_macos_conda_py3.5
-
binary_macos_conda
:
filters
:
branches
:
...
...
.circleci/regenerate.py
View file @
14cc5c05
...
...
@@ -23,7 +23,7 @@ def workflows(prefix='', upload=False, filter_branch=None, indentation=6):
w
=
[]
for
btype
in
[
"wheel"
,
"conda"
]:
for
os_type
in
[
"linux"
,
"macos"
]:
for
python_version
in
[
"3.5"
,
"3.6"
,
"3.7"
,
"3.8"
]:
for
python_version
in
[
"3.6"
,
"3.7"
,
"3.8"
]:
w
+=
workflow_pair
(
btype
,
os_type
,
python_version
,
filter_branch
,
prefix
,
upload
)
return
indent
(
indentation
,
w
)
...
...
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