Skip to content

Commit 7ce5f14

Browse files
authored
Merge pull request #111 from consideRatio/pr/drop-py36-38-support
Require Python 3.9+
2 parents dc66e5e + 0d2dfc2 commit 7ce5f14

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v4
1818
- uses: actions/setup-python@v5
1919
with:
20-
python-version: 3.9
20+
python-version: 3.13
2121

2222
- name: Build package
2323
run: |

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
echo " pre-commit run --all-files"
3131
3232
tests:
33-
runs-on: ubuntu-22.04
33+
runs-on: ubuntu-24.04
3434
strategy:
3535
matrix:
3636
include:
3737
# Only test oldest supported and latest python version to reduce
3838
# GitHub API calls, as they can get rate limited
39-
- python-version: 3.8
39+
- python-version: 3.9
4040
- python-version: 3.x
4141

4242
steps:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
name="github_activity",
2222
version=version,
2323
include_package_data=True,
24-
python_requires=">=3.6",
24+
python_requires=">=3.9",
2525
author="Executable Books Project",
2626
author_email="[email protected]",
2727
url="https://executablebooks.org/",

0 commit comments

Comments
 (0)