Skip to content

Commit 90b0303

Browse files
committed
Fixup python install
1 parent 79ba097 commit 90b0303

9 files changed

+12
-4
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.egg-info
2+
.eggs
3+
.pytest_cache
4+
test-results.xml
5+
.mypy_cache

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pipeline {
6767
} catch (all) {
6868
echo "Unable to pull ${parentImage(params.release_label)} as a build cache"
6969
}
70-
sh 'ls tailor-meta'
70+
7171
withCredentials([[$class: 'AmazonWebServicesCredentialsBinding', credentialsId: 'tailor_aws']]) {
7272
parent_image = docker.build(parentImage(params.release_label),
7373
"-f tailor-meta/environment/Dockerfile --cache-from ${parentImage(params.release_label)} " +

mypy.ini

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[mypy]
2+
ignore_missing_imports = True

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ long_description = file: README.md
1515
[options]
1616
python_requires = >=3.6
1717
install_requires =
18-
18+
Jinja2
1919
packages = find:
2020
setup_requires =
2121
pytest-runner

tailor-meta/__init__.py

Whitespace-only changes.
File renamed without changes.

tailor_meta/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.0.0"
165 Bytes
Binary file not shown.

tailor-meta/create_pipelines.py tailor_meta/create_pipelines.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import sys
44

55

6-
def create_pipelines():
6+
def create_pipelines(deploy):
77
pass
88

99

@@ -15,7 +15,7 @@ def main():
1515
# parser.add_argument('--endpoint', type=str, required=True)
1616
# parser.add_argument('--distribution', type=str, required=True)
1717
# parser.add_argument('--keys', type=pathlib.Path, nargs='+')
18-
# parser.add_argument('--publish', action='store_true')
18+
parser.add_argument('--deploy', action='store_true')
1919
args = parser.parse_args()
2020

2121
sys.exit(create_pipelines(**vars(args)))

0 commit comments

Comments
 (0)