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
torch-spline-conv
Commits
a95a18cb
Commit
a95a18cb
authored
Dec 01, 2020
by
rusty1s
Browse files
define specifc folder
parent
30648a1c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
9 deletions
+4
-9
.travis.yml
.travis.yml
+3
-4
setup.py
setup.py
+1
-5
No files found.
.travis.yml
View file @
a95a18cb
...
@@ -116,8 +116,7 @@ script:
...
@@ -116,8 +116,7 @@ script:
-
flake8 .
-
flake8 .
-
python setup.py test
-
python setup.py test
after_success
:
after_success
:
-
python setup.py bdist_wheel --dist-dir=dist/torch-${TORCH_VERSION}
-
python setup.py bdist_wheel --dist-dir=dist/torch-${TORCH_VERSION}/${IDX}
# - python script/rename_wheel.py ${IDX}
-
codecov
-
codecov
deploy
:
deploy
:
provider
:
s3
provider
:
s3
...
@@ -126,8 +125,8 @@ deploy:
...
@@ -126,8 +125,8 @@ deploy:
access_key_id
:
${S3_ACCESS_KEY}
access_key_id
:
${S3_ACCESS_KEY}
secret_access_key
:
${S3_SECRET_ACCESS_KEY}
secret_access_key
:
${S3_SECRET_ACCESS_KEY}
bucket
:
pytorch-geometric.com
bucket
:
pytorch-geometric.com
local_dir
:
dist/torch-${TORCH_VERSION}
local_dir
:
dist/torch-${TORCH_VERSION}
/${IDX}
upload_dir
:
whl/torch-${TORCH_VERSION}
upload_dir
:
whl/torch-${TORCH_VERSION}
/${IDX}
acl
:
public_read
acl
:
public_read
on
:
on
:
all_branches
:
true
all_branches
:
true
...
...
setup.py
View file @
a95a18cb
...
@@ -13,10 +13,6 @@ if os.getenv('FORCE_CUDA', '0') == '1':
...
@@ -13,10 +13,6 @@ if os.getenv('FORCE_CUDA', '0') == '1':
if
os
.
getenv
(
'FORCE_CPU'
,
'0'
)
==
'1'
:
if
os
.
getenv
(
'FORCE_CPU'
,
'0'
)
==
'1'
:
WITH_CUDA
=
False
WITH_CUDA
=
False
suffix
=
'+cpu'
if
WITH_CUDA
:
suffix
=
f
'+cu
{
torch
.
version
.
cuda
.
replace
(
"."
,
""
)
}
'
BUILD_DOCS
=
os
.
getenv
(
'BUILD_DOCS'
,
'0'
)
==
'1'
BUILD_DOCS
=
os
.
getenv
(
'BUILD_DOCS'
,
'0'
)
==
'1'
...
@@ -67,7 +63,7 @@ tests_require = ['pytest', 'pytest-cov']
...
@@ -67,7 +63,7 @@ tests_require = ['pytest', 'pytest-cov']
setup
(
setup
(
name
=
'torch_spline_conv'
,
name
=
'torch_spline_conv'
,
version
=
'1.
2.0'
+
suffix
,
version
=
'1.
0.2'
,
author
=
'Matthias Fey'
,
author
=
'Matthias Fey'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
author_email
=
'matthias.fey@tu-dortmund.de'
,
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
,
url
=
'https://github.com/rusty1s/pytorch_spline_conv'
,
...
...
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