Skip to content

Commit 9f94fc8

Browse files
committed
feat: remove Python3.7 support
1 parent 2a7fe12 commit 9f94fc8

File tree

5 files changed

+3
-8
lines changed

5 files changed

+3
-8
lines changed

Diff for: .github/workflows/ci_tests.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
- os: macos-latest
2626
architecture: x64
2727
python:
28-
- 3.7
2928
- 3.8
3029
- 3.9
3130
- "3.10"

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Getting Started
4747
Required Prerequisites
4848
======================
4949

50-
* Python 3.7+
50+
* Python 3.8+
5151

5252

5353
Installation

Diff for: buildspec.yml

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ version: 0.2
33
batch:
44
fast-fail: false
55
build-list:
6-
- identifier: python3_7
7-
buildspec: codebuild/python3.7.yml
8-
env:
9-
image: aws/codebuild/standard:5.0
106
- identifier: python3_8
117
buildspec: codebuild/python3.8.yml
128
env:

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ def get_requirements():
4848
"License :: OSI Approved :: Apache Software License",
4949
"Programming Language :: Python",
5050
"Programming Language :: Python :: 3",
51-
"Programming Language :: Python :: 3.7",
5251
"Programming Language :: Python :: 3.8",
5352
"Programming Language :: Python :: 3.9",
5453
"Programming Language :: Python :: 3.10",
5554
"Programming Language :: Python :: 3.11",
55+
"Programming Language :: Python :: 3.12",
5656
"Programming Language :: Python :: Implementation :: CPython",
5757
"Topic :: Security",
5858
"Topic :: Security :: Cryptography",

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310,311,312}-{local,integ,ddb,examples}-fast,
3+
py{38,39,310,311,312}-{local,integ,ddb,examples}-fast,
44
nocmk, sourcebuildcheck,
55
docs, bandit, doc8, readme,
66
flake8{,-tests,-examples}, pylint{,-tests,-examples},

0 commit comments

Comments
 (0)