Skip to content

Commit 13bef8f

Browse files
committed
maintenance: Drop support for Python 3.9.
1 parent 4b1f538 commit 13bef8f

File tree

6 files changed

+13
-14
lines changed

6 files changed

+13
-14
lines changed

.github/ISSUE_TEMPLATE/00-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,11 @@ body:
149149
Please select the Python version you used.
150150
multiple: true
151151
options:
152-
- "3.9"
153152
- "3.10"
154153
- "3.11"
155154
- "3.12"
156155
- "3.13"
156+
- "3.14"
157157
validations:
158158
required: false
159159

.github/workflows/branches.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@ jobs:
9292
fail-fast: false
9393
matrix:
9494
python_version:
95-
- "3.9"
9695
- "3.10"
9796
- "3.11"
9897
- "3.12"
9998
- "3.13"
99+
- "3.14"
100100
os:
101101
- ubuntu-latest
102102
- macos-latest
@@ -160,11 +160,11 @@ jobs:
160160
fail-fast: false
161161
matrix:
162162
python_version:
163-
- "3.9"
164163
- "3.10"
165164
- "3.11"
166165
- "3.12"
167166
- "3.13"
167+
- "3.14"
168168
os:
169169
- ubuntu-latest
170170
- windows-latest
@@ -216,11 +216,11 @@ jobs:
216216
fail-fast: false
217217
matrix:
218218
python_version:
219-
- "3.9"
220219
- "3.10"
221220
- "3.11"
222221
- "3.12"
223222
- "3.13"
223+
- "3.14"
224224
os:
225225
- ubuntu-latest
226226

@@ -271,11 +271,11 @@ jobs:
271271
fail-fast: false
272272
matrix:
273273
python_version:
274-
- "3.9"
275274
- "3.10"
276275
- "3.11"
277276
- "3.12"
278277
- "3.13"
278+
- "3.14"
279279
os:
280280
- ubuntu-latest
281281

.github/workflows/dev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ jobs:
119119
fail-fast: false
120120
matrix:
121121
python_version:
122-
- "3.9"
123122
- "3.10"
124123
- "3.11"
125124
- "3.12"
126125
- "3.13"
126+
- "3.14"
127127
os:
128128
- ubuntu-latest
129129
- macos-latest
@@ -188,11 +188,11 @@ jobs:
188188
fail-fast: false
189189
matrix:
190190
python_version:
191-
- "3.9"
192191
- "3.10"
193192
- "3.11"
194193
- "3.12"
195194
- "3.13"
195+
- "3.14"
196196
os:
197197
- ubuntu-latest
198198
- windows-latest
@@ -244,11 +244,11 @@ jobs:
244244
fail-fast: false
245245
matrix:
246246
python_version:
247-
- "3.9"
248247
- "3.10"
249248
- "3.11"
250249
- "3.12"
251250
- "3.13"
251+
- "3.14"
252252
os:
253253
- ubuntu-latest
254254

@@ -299,11 +299,11 @@ jobs:
299299
fail-fast: false
300300
matrix:
301301
python_version:
302-
- "3.9"
303302
- "3.10"
304303
- "3.11"
305304
- "3.12"
306305
- "3.13"
306+
- "3.14"
307307
os:
308308
- ubuntu-latest
309309

.github/workflows/stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,11 @@ jobs:
119119
fail-fast: false
120120
matrix:
121121
python_version:
122-
- "3.9"
123122
- "3.10"
124123
- "3.11"
125124
- "3.12"
126125
- "3.13"
126+
- "3.14"
127127
os:
128128
- ubuntu-latest
129129
- macos-latest

docs/use/known-issues.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ On this page, you will find any issues that are known and not fixed - yet.
44

55
## Python Support
66

7-
Any Python version lower than `3.9` are not compatible with PyFunceble.
7+
Any Python version lower than `3.10` are not compatible with PyFunceble.
88

99
Because we don't want to support a version that is not maintained anymore, we
10-
decided to drop the support for Python `3.6`, `3.7`, and `3.8`.
10+
decided to drop the support for Python `3.6`, `3.7`, `3.8`, and `3.9`.
1111

1212
## PyFunceble CLI
1313

@@ -109,4 +109,3 @@ While using PyFunceble under the GitLab CI/CD engine, no coloration will be disp
109109
### GitHub Workflows
110110

111111
While using PyFunceble under the GitHub Workflows/Actions engine, no coloration will be displayed.
112-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def get_console_scripts(): # pragma: no cover
271271
setuptools.setup(
272272
name="PyFunceble-dev",
273273
version=get_version(),
274-
python_requires=">=3.9, <4",
274+
python_requires=">=3.10, <4",
275275
install_requires=get_requirements(mode="standard"),
276276
extras_require={
277277
"docs": get_requirements(mode="docs"),

0 commit comments

Comments
 (0)