Skip to content

Commit 972a51c

Browse files
author
Mark Beacom
authored
Upgrade docker images and drop py3.6 support (#38)
* Fix #36 - Upgrade docker images to buster from stretch * Fix #37 - Remove 3.6 classifier and update docs
1 parent d842789 commit 972a51c

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7.3-slim-stretch
1+
FROM python:3.7-slim-buster
22

33
WORKDIR /app
44

Dockerfile-py38

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-rc-slim-stretch
1+
FROM python:3.8-rc-slim-buster
22

33
ARG SYSTEM_PACKAGES="make"
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ Python wrapper and CLI for [CloudEndure](https://www.cloudendure.com/)
66

77
[Documentation](https://mbeacom.github.io/cloudendure-python/)
88

9-
Package version: `0.0.6`
9+
Package version: `0.0.7`
1010

1111
## Requirements
1212

13-
[Python 3.6+](https://www.python.org/downloads/)
13+
[Python 3.7+](https://www.python.org/downloads/)
1414

1515
## Installation & Usage
1616

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
URL: str = "https://github.com/mbeacom/cloudendure-python"
2323
EMAIL: str = "[email protected]"
2424
AUTHOR: str = "Mark Beacom"
25-
REQUIRES_PYTHON: str = ">=3.6.0"
26-
VERSION: str = "0.0.6"
25+
REQUIRES_PYTHON: str = ">=3.7.0"
26+
VERSION: str = "0.0.7"
2727

2828
REQUIRED: List[str] = ["requests", "boto3", "fire"]
2929
EXTRAS: Dict[str, List[str]] = {
@@ -138,9 +138,9 @@ def run(self):
138138
"Operating System :: POSIX :: Linux",
139139
"Programming Language :: Python",
140140
"Programming Language :: Python :: 3",
141-
"Programming Language :: Python :: 3.6",
142141
"Programming Language :: Python :: 3.7",
143142
"Programming Language :: Python :: 3.8",
143+
"Programming Language :: Python :: 3.9",
144144
"Programming Language :: Python :: 3 :: Only",
145145
"Programming Language :: Python :: Implementation :: CPython",
146146
"Topic :: Internet",

0 commit comments

Comments
 (0)