Skip to content

Commit 700c3f6

Browse files
authored
Merge pull request #19 from matagus/fixes-to-docs-and-github-configs-to-use-python-3.14
Use Python 3.14 in all documented examples & github configs
2 parents 779874e + b321220 commit 700c3f6

File tree

7 files changed

+6
-10
lines changed

7 files changed

+6
-10
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ body:
2222
attributes:
2323
label: Python Version
2424
description: Which version of Python were you using?
25-
placeholder: 3.12.0
25+
placeholder: 3.14.0
2626
validations:
2727
required: false
2828
- type: textarea

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: '3.12'
19+
python-version: '3.14'
2020

2121
- name: Install dependencies
2222
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Python
2323
uses: actions/setup-python@v6
2424
with:
25-
python-version: '3.12'
25+
python-version: '3.14'
2626
cache: 'pip'
2727
- name: Install dependencies
2828
run: |

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ hatch run test.py3.12-5.1:test # Python 3.12 + Django 5.1
8080

8181
**Run specific test file:**
8282
```bash
83-
hatch run test.py3.12-5.2:test tests.test_models
83+
hatch run test.py3.14-5.2:test tests.test_models
8484
```
8585

8686
**Coverage:**

docs/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Visit http://127.0.0.1:8000/admin/ to test the app with a populated admin.
3838
hatch run test:test
3939

4040
# Specific version
41-
hatch run test.py3.12-5.2:test
41+
hatch run test.py3.14-5.2:test
4242

4343
# With coverage
4444
hatch run test:cov

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ hatch run test.py3.12-5.1:test # Python 3.12 + Django 5.1
7777

7878
**Run specific test file:**
7979
```bash
80-
hatch run test.py3.12-5.2:test tests.test_models
80+
hatch run test.py3.14-5.2:test tests.test_models
8181
```
8282

8383
**Coverage:**

requirements.txt

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)