Skip to content

Commit 48ddeda

Browse files
authored
Merge pull request #87 from RyanLua/python-3.14
Support Python 3.14
2 parents 2f7f1b3 + fce27c7 commit 48ddeda

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
23+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2424
steps:
2525
- name: Checkout repository
2626
uses: actions/checkout@v5

docs/source/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Installation
22
============
33

4-
InstaWebhooks expects that you have `Python 3.8 or higher <https://www.python.org/downloads/>`_ (and `pip <https://pypi.org/project/pip/>`_ if you are using it to install) to be installed.
4+
InstaWebhooks expects that you have `Python 3.10 or higher <https://www.python.org/downloads/>`_ (and `pip <https://pypi.org/project/pip/>`_ if you are using it to install) to be installed.
55

66
Using pip (recommended)
77
-----------------------

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "instawebhooks"
77
description = "Discord webhooks for new Instagram posts from any profile"
88
readme = "README.rst"
9-
requires-python = ">=3.8"
9+
requires-python = ">=3.10"
1010
keywords = ["webhooks", "feed", "embed", "Instagram", "Discord", "CLI"]
1111
authors = [
1212
{ name="Ryan Luu", email="ryan.luu@ryanluu.dev" },
@@ -20,12 +20,11 @@ classifiers = [
2020
"Topic :: Communications",
2121
"License :: OSI Approved :: MIT License",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.8",
24-
"Programming Language :: Python :: 3.9",
2523
"Programming Language :: Python :: 3.10",
2624
"Programming Language :: Python :: 3.11",
2725
"Programming Language :: Python :: 3.12",
2826
"Programming Language :: Python :: 3.13",
27+
"Programming Language :: Python :: 3.14",
2928
"Programming Language :: Python :: 3 :: Only",
3029
]
3130
dependencies = [

0 commit comments

Comments
 (0)