Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- 'docs'

env:
BUILDER_VERSION: v0.9.56
BUILDER_VERSION: v0.9.75
BUILDER_SOURCE: releases
BUILDER_HOST: https://d19elf31gohf1l.cloudfront.net
PACKAGE_NAME: aws-iot-device-sdk-python-v2
Expand Down Expand Up @@ -104,6 +104,7 @@ jobs:
osx:
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
runner:
- macos-13
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This document provides information about the AWS IoT Device SDK v2 for Python. T
## Installation

### Minimum Requirements
* Python 3.7+
* Python 3.8+

[Step-by-step instructions](./documents/PREREQUISITES.md)

Expand Down
7 changes: 1 addition & 6 deletions builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,7 @@
["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"],
["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", ".", "--verbose"],
["/opt/python/cp38-cp38/bin/python", "-m", "pip", "install", "boto3", "autopep8"],
["/opt/python/cp38-cp38/bin/python", "-m", "unittest", "discover", "--verbose"],
["echo", "------ Python 3.7 ------"],
["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", "--upgrade", "pip", "setuptools"],
["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", ".", "--verbose"],
["/opt/python/cp37-cp37m/bin/python", "-m", "pip", "install", "boto3", "autopep8"],
["/opt/python/cp37-cp37m/bin/python", "-m", "unittest", "discover", "--verbose"]
["/opt/python/cp38-cp38/bin/python", "-m", "unittest", "discover", "--verbose"]
],
"run_tests": false,
"_comment": "manylinux has all its own build steps, turn off 'tests' which is where normal build steps are declared. using data to program sucks"
Expand Down
2 changes: 1 addition & 1 deletion documents/PREREQUISITES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PREREQUISITES

## Python 3.7 or higher
## Python 3.8 or higher

How you install Python varies from platform to platform. Below are the instructions for Windows, MacOS, and Linux:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ def _load_version():
install_requires=[
'awscrt==0.27.4',
],
python_requires='>=3.7',
python_requires='>=3.8',
)
Loading