Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
🔧 Only support python >=3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Jul 29, 2024
1 parent eac3c5d commit f8387b2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'
- name: Install dependencies
run: pip install tox
- run: tox
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.10"
python: "3.12"

sphinx:
configuration: docs/conf.py
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Welcome to stuf_zds_payments's documentation!
:Version: 0.1.0
:Source: https://github.com/maykinmedia/stuf_zds_payments
:Keywords: ``<keywords>``
:PythonVersion: 3.10
:PythonVersion: 3.11

|build-status| |code-quality| |black| |coverage| |docs|

Expand All @@ -30,7 +30,7 @@ Installation
Requirements
------------

* Python 3.10 or above
* Python 3.11 or above
* Django 4.2 or newer


Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
requires-python = ">=3.11"
dependencies = [
"django>=4.2"
]
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ skip_missing_interpreters = true

[gh-actions]
python =
3.10: py310
3.11: py311
3.12: py312

Expand Down

0 comments on commit f8387b2

Please sign in to comment.