Skip to content

Commit 97a5f61

Browse files
committed
Update to 0.2.4
1 parent 5b61306 commit 97a5f61

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-python@v1
1515
if: github.event.deleted == false
1616
with:
17-
python-version: '3.7'
17+
python-version: '3.8'
1818
architecture: 'x64'
1919
- name: Install dependencies
2020
if: success()

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-python@v1
1515
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
1616
with:
17-
python-version: '3.7'
17+
python-version: '3.8'
1818
architecture: 'x64'
1919
- name: Install dependencies
2020
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,14 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.2.2
11+
VERSION := v0.2.4
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"
1515

16+
run-docker: ## Run the local development environment docker shell.
17+
@docker run -v $(pwd):/app --rm -it airproducts /bin/bash
18+
1619
build: ## Build the release docker image.
1720
@docker build \
1821
--stream \

cloudendure/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.2"
1+
__version__ = "0.2.4"

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cloudendure"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Python wrapper and CLI for CloudEndure"
55
authors = ["Mark Beacom <[email protected]>", "Tom Warnock <[email protected]>"]
66
maintainers = ["Evan Lucchesi <[email protected]>", "Nick Selpa <[email protected]>"]
@@ -49,14 +49,14 @@ classifiers = [
4949

5050
[tool.poetry.dependencies]
5151
python = "^3.7"
52-
requests = "^2.23.0"
53-
boto3 = "^1.12.4"
54-
fire = "^0.2.1"
5552
six = "^1.14.0"
5653
certifi = "^2019.11.28"
5754
python-dateutil = "^2.8.1"
5855
setuptools = "^45.2.0"
5956
urllib3 = "^1.25.8"
57+
fire = "^0.3.0"
58+
requests = "^2.23.0"
59+
boto3 = "^1.12.30"
6060
cookiecutter = "^1.7.0"
6161

6262
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)