Skip to content
This repository was archived by the owner on Feb 3, 2021. It is now read-only.

Commit c237501

Browse files
Feature: Pypi auto deployement (#428)
1 parent 216f63d commit c237501

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+114
-65
lines changed

.travis.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22
python:
3-
- "3.5"
4-
- "3.6"
3+
- 3.5
4+
- 3.6
55

66
install:
77
- pip install -r requirements.txt
@@ -13,4 +13,14 @@ script:
1313

1414
branches:
1515
only:
16-
- master
16+
- master
17+
18+
deploy:
19+
provider: pypi
20+
distributions: "sdist bdist_wheel"
21+
user: aztk
22+
password:
23+
secure: j/mwA+hWudujDZ+JkgN3hDBUcIH3Vt1SWsvxnyUadErFsi9S9bW8OZ8kOp3R8yj73pnaENADmvDPjBt6w39b3h7l/EmNYlEdsAuPBMmaNQ0+fmPiKLCcALVIt/Odxdc+a1p2p+F3HEatqMCkaSRUs9gcHSYA1P57rt7y6i28xrCTt1ayQrdOZofgyAx4egocFQlgXgFpQIO3vNXySmc5HaIJF8h84CUKvLG/jv9bHgDoT7n2F00sQQV/tLbXdWEA2LcJFN5q4gjk3AwFtofTtMzlk3IE3y3qp9DagWbdsKoy9+b31lypVDBiIp/N+kCm/pwYDJXyG0H7U1pev2F8K/f4xF2x0AJDJJamLczAY4Ac4AMPImlI3cCpSS6htQhb+i5+KeEUW2tm+xGmdprOSto2712C4TNMna25x+WZteuPmRGYTmmDxGSeD769lE6TMGqrJTlmpkzndJiyp8ek/86hJPJUQoPfDadWdIdcA4wCjpXFBach4DYEItKvYoIk/KfK3wdqp3Lbs+MhT+JhuXGR0RRWlkCROiIo48TwQ716ddvjy2PPxwxNhplu3BdyEXLEDGN9EnEL+3L5P0GELhB4+KstjXSbECBYzULJ1+4kzvrdSB3K9F41stpT7x9PN9mK0t9FrVpXWbNozuJqkCvVVtz2ZSJ+20kvSuI1TPA=
24+
on:
25+
python: 3.6
26+
tags: true

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"bin/**": true
66
},
77
"files.exclude": {
8-
"**/__pycache__": true
8+
"**/__pycache__": true,
9+
"*.egg-info": true,
910
},
1011
"python.autoComplete.extraPaths": [
1112
"${workspaceRoot}/node_scripts"

aztk/utils/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"""
4444
Source and destination paths for spark init
4545
"""
46-
INIT_DIRECTORY_SOURCE = os.path.join(ROOT_PATH, 'config')
46+
INIT_DIRECTORY_SOURCE = os.path.join(ROOT_PATH, "aztk_cli", 'config')
4747
LOCAL_INIT_DIRECTORY_DEST = os.path.join(os.getcwd(), '.aztk')
4848
GLOBAL_INIT_DIRECTORY_DEST = os.path.join(HOME_DIRECTORY_PATH, '.aztk')
4949
"""

aztk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2323
# DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = '0.6.0'
25+
__version__ = '0.7.0b9'

aztk_cli/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import aztk_cli.logger
2+
log = aztk_cli.logger.root

cli/config.py renamed to aztk_cli/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
import yaml
3-
from cli import log
3+
from aztk_cli import log
44
import aztk.spark
55
from aztk.spark.models import (
66
SecretsConfiguration,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)