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

Commit

Permalink
Release v0.10.3 (#714)
Browse files Browse the repository at this point in the history
* Build(deps): Bump requests from 2.19.1 to 2.20.0 in /aztk/node_scripts

Bumps [requests](https://github.com/requests/requests) from 2.19.1 to 2.20.0.
- [Release notes](https://github.com/requests/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/master/HISTORY.md)
- [Commits](psf/requests@v2.19.1...v2.20.0)

Signed-off-by: dependabot[bot] <[email protected]>

* Build(deps): Bump pyyaml from 3.13 to 5.1 in /aztk/node_scripts

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 3.13 to 5.1.
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/master/CHANGES)
- [Commits](yaml/pyyaml@3.13...5.1)

Signed-off-by: dependabot[bot] <[email protected]>

* update changelog for 0.10.3 release

* update requirements and pipfile

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
jafreck and dependabot[bot] authored Feb 14, 2020
1 parent 5be9e87 commit 6e04372
Show file tree
Hide file tree
Showing 9 changed files with 161 additions and 176 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.10.3 (2020-02-13)

**Bug Fixes**
* Pin pipenv dependencies in setup_host.sh (#709) ([5be9e87](https://github.com/Azure/aztk/commit/5be9e87)), closes [#710](https://github.com/Azure/aztk/issues/710)


## 0.10.2 (2018-12-07)

**Bug Fixes**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This toolkit is built on top of Azure Batch but does not require any Azure Batch
```
3. Login or register for an [Azure Account](https://azure.microsoft.com), navigate to [Azure Cloud Shell](https://shell.azure.com), and run:
```sh
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.2/account_setup.sh -O account_setup.sh &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.3/account_setup.sh -O account_setup.sh &&
chmod 755 account_setup.sh &&
/bin/bash account_setup.sh
```
Expand Down
2 changes: 1 addition & 1 deletion account_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ echo "Installing dependencies..." &&
pip install --force-reinstall --upgrade --user pyyaml==3.12 azure==3.0.0 azure-cli-core==2.0.30 msrestazure==0.4.25 > /dev/null 2>&1 &&
echo "Finished installing dependencies." &&
echo "Getting account setup script..." &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.2/account_setup.py -O account_setup.py &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.3/account_setup.py -O account_setup.py &&
chmod 755 account_setup.py &&
echo "Finished getting account setup script." &&
echo "Running account setup script..." &&
Expand Down
4 changes: 2 additions & 2 deletions aztk/node_scripts/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ azure-mgmt-batch = "==5.0.1"
azure-mgmt-storage = "==3.0.0"
azure-storage-blob = "==1.3.1"
pycryptodomex = "==3.6.6"
PyYAML = "==3.13"
requests = "==2.19.1"
PyYAML = "==5.1"
requests = "==2.20.0"
paramiko = "==2.4.2"
azure-cosmosdb-table = "==1.0.5"

Expand Down
315 changes: 147 additions & 168 deletions aztk/node_scripts/Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion aztk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# DEALINGS IN THE SOFTWARE.
major = 0
minor = 10
patch = 2
patch = 3

suffix = ""

Expand Down
2 changes: 1 addition & 1 deletion docs/00-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The script outputs all of the necessary information to use `aztk`, copy the outp
#### Usage
Copy and paste the following into an [Azure Cloud Shell](https://shell.azure.com):
```sh
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.2/account_setup.sh &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.3/account_setup.sh &&
chmod 755 account_setup.sh &&
/bin/bash account_setup.sh
```
Expand Down
2 changes: 1 addition & 1 deletion docs/12-docker-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ aztk spark cluster create ... --docker-repo aztk/base:spark2.2.0 "--docker-run-o
```

## Using a custom Docker Image
You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.10.2/docker-image) and build your own image that way.
You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.10.3/docker-image) and build your own image that way.

Once you have your Docker image built and hosted publicly, you can then use the **--docker-repo** parameter in your **aztk spark cluster create** command to point to it.

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ paramiko~=2.4.2
yapf==0.22.0
pylint==2.1.1
pytest==5.3.5
pytest-xdist==1.22.0
pytest-xdist==1.31.0
twine==1.11.0
docker==3.2.1

Expand Down

0 comments on commit 6e04372

Please sign in to comment.