Skip to content

Commit 9693a03

Browse files
authored
CM-35810 - Soft deprecate support for Python 3.7 (#224)
1 parent 9b36b51 commit 9693a03

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/workflows/pre_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
fetch-depth: 0
3333

34-
- name: Set up Python 3.7
34+
- name: Set up Python 3.8
3535
uses: actions/setup-python@v4
3636
with:
37-
python-version: '3.7'
37+
python-version: '3.8'
3838

3939
- name: Load cached Poetry setup
4040
id: cached-poetry

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
with:
3131
fetch-depth: 0
3232

33-
- name: Set up Python 3.7
33+
- name: Set up Python 3.8
3434
uses: actions/setup-python@v4
3535
with:
36-
python-version: '3.7'
36+
python-version: '3.8'
3737

3838
- name: Load cached Poetry setup
3939
id: cached-poetry

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Python
2424
uses: actions/setup-python@v4
2525
with:
26-
python-version: 3.7
26+
python-version: 3.8
2727

2828
- name: Load cached Poetry setup
2929
id: cached-poetry

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Set up Python
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: '3.7'
30+
python-version: '3.8'
3131

3232
- name: Load cached Poetry setup
3333
id: cached-poetry

.github/workflows/tests_full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ macos-latest, ubuntu-latest, windows-latest ]
16-
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ]
16+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
1717

1818
runs-on: ${{matrix.os}}
1919

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ This guide will guide you through both installation and usage.
5252

5353
# Prerequisites
5454

55+
> [!WARNING]
56+
> Python 3.7 end-of-life was on 2023-06-27.
57+
> It is recommended to use Python 3.8 or later.
58+
> We will drop support for Python 3.7 soon.
59+
5560
- The Cycode CLI application requires Python version 3.7 or later.
5661
- Use the [`cycode auth` command](#using-the-auth-command) to authenticate to Cycode with the CLI
5762
- Alternatively, you can obtain a Cycode Client ID and Client Secret Key by following the steps detailed in the [Service Account Token](https://docs.cycode.com/reference/creating-a-service-account-access-token) and [Personal Access Token](https://docs.cycode.com/reference/creating-a-personal-access-token-1) pages, which contain details on obtaining these values.

0 commit comments

Comments
 (0)