Skip to content

Commit

Permalink
Update to 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbeacom committed Mar 27, 2020
1 parent 5b61306 commit 97a5f61
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/setup-python@v1
if: github.event.deleted == false
with:
python-version: '3.7'
python-version: '3.8'
architecture: 'x64'
- name: Install dependencies
if: success()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/setup-python@v1
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
with:
python-version: '3.7'
python-version: '3.8'
architecture: 'x64'
- name: Install dependencies
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@ SHA1 := $$(git log -1 --pretty=%h)
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
LATEST_TAG := ${REPO_NAME}:latest
GIT_TAG := ${REPO_NAME}:${SHA1}
VERSION := v0.2.2
VERSION := v0.2.4

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

run-docker: ## Run the local development environment docker shell.
@docker run -v $(pwd):/app --rm -it airproducts /bin/bash

build: ## Build the release docker image.
@docker build \
--stream \
Expand Down
2 changes: 1 addition & 1 deletion cloudendure/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.2"
__version__ = "0.2.4"
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cloudendure"
version = "0.2.3"
version = "0.2.4"
description = "Python wrapper and CLI for CloudEndure"
authors = ["Mark Beacom <[email protected]>", "Tom Warnock <[email protected]>"]
maintainers = ["Evan Lucchesi <[email protected]>", "Nick Selpa <[email protected]>"]
Expand Down Expand Up @@ -49,14 +49,14 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.23.0"
boto3 = "^1.12.4"
fire = "^0.2.1"
six = "^1.14.0"
certifi = "^2019.11.28"
python-dateutil = "^2.8.1"
setuptools = "^45.2.0"
urllib3 = "^1.25.8"
fire = "^0.3.0"
requests = "^2.23.0"
boto3 = "^1.12.30"
cookiecutter = "^1.7.0"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit 97a5f61

Please sign in to comment.