File tree Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
1
#! /usr/bin/groovy
2
2
3
- @Library ([' github.com/indigo-dc/jenkins-pipeline-library@1.3.5 ' ]) _
3
+ @Library ([' github.com/indigo-dc/jenkins-pipeline-library@release/1.4.0 ' ]) _
4
4
5
5
pipeline {
6
6
agent {
@@ -74,7 +74,6 @@ pipeline {
74
74
}
75
75
}
76
76
77
- /*
78
77
stage(' Dependency check' ) {
79
78
agent {
80
79
label ' docker-build'
@@ -85,7 +84,7 @@ pipeline {
85
84
}
86
85
post {
87
86
always {
88
- OWASPDependencyCheckPublish()
87
+ OWASPDependencyCheckPublish (report = ' **/dependency-check-report.xml ' )
89
88
HTMLReport (
90
89
" $WORKSPACE /DEEPaaS/deepaas" ,
91
90
' dependency-check-report.html' ,
@@ -94,7 +93,6 @@ pipeline {
94
93
}
95
94
}
96
95
}
97
- */
98
96
99
97
stage(' DockerHub delivery' ) {
100
98
when {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ The DEEPaaS documentation is hosted on [Read the Docs](https://deepaas.readthedo
43
43
If you are using this software and want to cite it in any work, please use the
44
44
following:
45
45
46
- > López García , A. "DEEPaaS API: a REST API for Machine Learning and
46
+ > Lopez Garcia , A. "DEEPaaS API: a REST API for Machine Learning and
47
47
> Deep Learning models". In: _ Journal of Open Source Software_ 4(42) (2019),
48
48
> pp. 1517. ISSN: 2475-9066. DOI: [ 10.21105/joss.01517] ( https://doi.org/10.21105/joss.01517 )
49
49
Original file line number Diff line number Diff line change 1
1
# The order of packages is significant, because pip processes them in the order
2
2
# of appearance. Changing the order has an impact on the overall integration
3
3
# process, which may cause wedges in the gate later.
4
- pbr >= 1.8
4
+ pbr >= 4.1.0
5
5
six >= 1.9.0 # MIT
6
6
7
7
oslo.log >= 1.8.0 # Apache-2.0
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ project_urls =
12
12
Bug Tracker = https://github.com/indigo-dc/deepaas/issues
13
13
Documentation = https://deepaas.readthedocs.io/
14
14
15
+ python-requires = >=3.6
16
+
15
17
license = Apache-2
16
18
license_file = LICENSE
17
19
@@ -37,9 +39,6 @@ classifier =
37
39
Topic :: Scientific/Engineering :: Information Analysis
38
40
Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
39
41
40
- [bdist_wheel]
41
- universal = 1
42
-
43
42
[files]
44
43
packages =
45
44
deepaas
Original file line number Diff line number Diff line change 14
14
import setuptools
15
15
16
16
setuptools .setup (
17
- setup_requires = ['pbr>=1.8 ' ],
17
+ setup_requires = ['pbr>=5.3.0 ' ],
18
18
pbr = True )
You can’t perform that action at this time.
0 commit comments