Skip to content

Commit b95f776

Browse files
committed
Require Python 3.8+
1 parent 8462e92 commit b95f776

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ jobs:
3131
- uses: actions/checkout@v1
3232

3333
- uses: actions/setup-python@v2
34-
if: matrix.os == 'macos'
35-
with: { python-version: "3.x" }
34+
with: { python-version: "3.8" }
3635

3736
- name: Create project
3837
run: |
@@ -77,8 +76,7 @@ jobs:
7776
- uses: actions/checkout@v1
7877

7978
- uses: actions/setup-python@v2
80-
if: matrix.os == 'macos'
81-
with: { python-version: "3.x" }
79+
with: { python-version: "3.8" }
8280

8381
- name: Create project
8482
run: |
@@ -113,6 +111,9 @@ jobs:
113111
steps:
114112
- uses: actions/checkout@v1
115113

114+
- uses: actions/setup-python@v2
115+
with: { python-version: "3.8" }
116+
116117
- name: Package
117118
run: python -m zipapp cmake-init -p "/usr/bin/env python3"
118119

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Here are some example outputs of the script as of 0.2.4:
5151

5252
Make sure you have these programs installed:
5353

54-
* Python
54+
* Python 3.8 or newer
5555
* CMake 3.19 or newer
5656
* git
5757

0 commit comments

Comments
 (0)