Skip to content

Commit

Permalink
Bump minimum Python version to 3.8 (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldiamant authored Apr 28, 2022
1 parent f0601db commit 6622d81
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workflows:
jobs:
unit-test:
docker:
- image: python:3.7.9
- image: python:3.8
steps:
- checkout
- run: pip install -r requirements.txt
Expand All @@ -26,7 +26,7 @@ jobs:
docset:
docker:
# NOTE: We might eventually need Docker authentication here.
- image: cimg/python:3.9
- image: cimg/python:3.8
steps:
- checkout
- run:
Expand Down
15 changes: 15 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

version: 2

build:
os: ubuntu-20.04
tools:
python: "3.8"

sphinx:
configuration: docs/conf.py

python:
install:
- requirements: docs/requirements.txt
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.9
FROM python:3.8

# Copy SDK code into the container
RUN mkdir -p $HOME/py-algorand-sdk
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# -- Project information -----------------------------------------------------

project = "algosdk"
copyright = "2020 Algorand"
copyright = "2022 Algorand"
author = "Algorand"


Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
sphinx==4.0.1
sphinx-rtd-theme
sphinx==4.2.0
sphinx-rtd-theme==1.0.0
m2r2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"msgpack>=1.0.0,<2",
],
packages=setuptools.find_packages(),
python_requires=">=3.5",
python_requires=">=3.8",
package_data={"": ["data/langspec.json"]},
include_package_data=True,
)

0 comments on commit 6622d81

Please sign in to comment.