Skip to content

Commit 801dfd9

Browse files
authored
Merge pull request #8 from jwodder/pyup
Support Python 3.14; drop support for Python 3.8 & 3.9
2 parents 292e2af + 40af163 commit 801dfd9

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,18 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
python-version:
22-
- '3.8'
23-
- '3.9'
2422
- '3.10'
2523
- '3.11'
2624
- '3.12'
2725
- '3.13'
28-
- 'pypy-3.9'
26+
- '3.14'
2927
- 'pypy-3.10'
3028
- 'pypy-3.11'
3129
toxenv: [py]
3230
include:
33-
- python-version: '3.8'
31+
- python-version: '3.10'
3432
toxenv: lint
35-
- python-version: '3.8'
33+
- python-version: '3.10'
3634
toxenv: typing
3735
steps:
3836
- name: Check out repository

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ clones the fork instead so you get something you can push to.
2424

2525
Installation
2626
============
27-
``forklone`` requires Python 3.8 or higher. Just use `pip
27+
``forklone`` requires Python 3.10 or higher. Just use `pip
2828
<https://pip.pypa.io>`_ for Python 3 (You have pip, right?) to install it::
2929

3030
python3 -m pip install git+https://github.com/jwodder/forklone.git

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "forklone"
77
dynamic = ["version"]
88
description = "Fork & clone a GitHub repository"
99
readme = "README.rst"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.10"
1111
license = "MIT"
1212
license-files = ["LICENSE"]
1313
authors = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,typing,py38,py39,py310,py311,py312,py313,pypy3
2+
envlist = lint,typing,py310,py311,py312,py313,py314,pypy3
33
skip_missing_interpreters = True
44
isolated_build = True
55
minversion = 3.3.0

0 commit comments

Comments
 (0)