Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- name: Checkout repository
uses: actions/checkout@v5
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
============

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.
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.

Using pip (recommended)
-----------------------
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "instawebhooks"
description = "Discord webhooks for new Instagram posts from any profile"
readme = "README.rst"
requires-python = ">=3.8"
requires-python = ">=3.10"
keywords = ["webhooks", "feed", "embed", "Instagram", "Discord", "CLI"]
authors = [
{ name="Ryan Luu", email="ryan.luu@ryanluu.dev" },
Expand All @@ -20,12 +20,11 @@ classifiers = [
"Topic :: Communications",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
Expand Down