Skip to content

Commit 3f934a7

Browse files
committed
chore: remove references to 3.8
1 parent a0c24be commit 3f934a7

File tree

6 files changed

+5
-7
lines changed

6 files changed

+5
-7
lines changed

.github/workflows/integration_tests_codebuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ "3.8", "3.11", "3.12", "3.13" ]
16+
python-version: [ "3.11", "3.12", "3.13" ]
1717
environment: [ "mysql", "pg" ]
1818

1919
runs-on: ubuntu-latest

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
35+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3636
poetry-version: ["1.8.2"]
3737

3838
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ For all other questions, please use [GitHub discussions](https://github.com/awsl
205205

206206
1. Set up your environment by following the directions in the [Development Guide](./docs/development-guide/DevelopmentGuide.md).
207207
2. To contribute, first make a fork of this project.
208-
3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.7 if we are supporting Python 3.8 - 3.13 (inclusive)).
208+
3. Make any changes on your fork. Make sure you are aware of the requirements for the project (e.g. do not require Python 3.7 if we are supporting Python 3.10 - 3.13 (inclusive)).
209209
4. Create a pull request from your fork.
210210
5. Pull requests need to be approved and merged by maintainers into the main branch. <br />
211211

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Before using the AWS Advanced Python Driver, you must install:
66

7-
- Python 3.8 - 3.13 (inclusive).
7+
- Python 3.10 - 3.13 (inclusive).
88
- The AWS Advanced Python Driver.
99
- Your choice of underlying Python driver.
1010
- To use the wrapper with Aurora with PostgreSQL compatibility, install [Psycopg](https://github.com/psycopg/psycopg).

docs/development-guide/DevelopmentGuide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Development Guide
22

33
### Setup
4-
Make sure you have Python 3.8 - 3.13 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)).
4+
Make sure you have Python 3.10 - 3.13 (inclusive) installed, along with your choice of underlying Python driver (see [minimum requirements](../GettingStarted.md#minimum-requirements)).
55

66
Clone the AWS Advanced Python Driver repository:
77

tests/integration/host/src/test/java/integration/host/TestEnvironment.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,8 +1141,6 @@ private static void createTelemetryOtlpContainer(TestEnvironment env) {
11411141

11421142
private static String getContainerBaseImageName(TestEnvironmentRequest request) {
11431143
switch (request.getTargetPythonVersion()) {
1144-
case PYTHON_3_8:
1145-
return "python:3.8.18";
11461144
case PYTHON_3_11:
11471145
return "python:3.11.5";
11481146
case PYTHON_3_12:

0 commit comments

Comments
 (0)