Skip to content

Commit

Permalink
Merge pull request #70 from mattsb42-aws/dev-68
Browse files Browse the repository at this point in the history
Add Python 3.7
  • Loading branch information
mattsb42-aws committed Aug 16, 2018
2 parents b9f3ac3 + 5332ed6 commit c2e53e1
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,22 @@ matrix:
env: TOXENV=py36-accept
- python: 3.6
env: TOXENV=py36-examples
- python: 3.7
env: TOXENV=py37-local
dist: xenial
sudo: true
- python: 3.7
env: TOXENV=py37-integ
dist: xenial
sudo: true
- python: 3.7
env: TOXENV=py37-accept
dist: xenial
sudo: true
- python: 3.7
env: TOXENV=py37-examples
dist: xenial
sudo: true
- python: 3.6
env: TOXENV=nocmk
- python: 3.6
Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ aws-encryption-sdk
:target: https://pypi.python.org/pypi/aws-encryption-sdk
:alt: Latest Version

.. image:: https://img.shields.io/pypi/pyversions/aws-encryption-sdk-cli.svg
:target: https://pypi.python.org/pypi/aws-encryption-sdk
:alt: Supported Python Versions

.. image:: https://img.shields.io/badge/code_style-black-000000.svg
:target: https://github.com/ambv/black
:alt: Code style: black
Expand Down
18 changes: 18 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,24 @@ environment:
- PYTHON: "C:\\Python36-x64"
TOXENV: "py36-examples"

# Python 3.7
- PYTHON: "C:\\Python37"
TOXENV: "py37-local"
- PYTHON: "C:\\Python37"
TOXENV: "py37-integ"
- PYTHON: "C:\\Python37"
TOXENV: "py37-accept"
- PYTHON: "C:\\Python37"
TOXENV: "py37-examples"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-local"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-integ"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-accept"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-examples"

install:
# Prepend newly installed Python to the PATH of this build
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ def get_requirements():
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
"Topic :: Security :: Cryptography",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{27,34,35,36}-{local,integ,accept,examples}, nocmk,
py{27,34,35,36,37}-{local,integ,accept,examples}, nocmk,
bandit, doc8, readme, docs,
{flake8,pylint}{,-tests,-examples},
isort-check, black-check,
Expand Down

0 comments on commit c2e53e1

Please sign in to comment.