Skip to content

Commit

Permalink
➖ Remove python 3.10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenbal committed Jan 30, 2024
1 parent 8162b10 commit 0c66de0
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12']
python: ['3.9', '3.11', '3.12']
django: ['3.2', '4.2']

name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'

- name: Build sdist and wheel
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Welcome to open_api_framework's documentation!
:Version: 0.1.0
:Source: https://github.com/maykinmedia/open_api_framework
:Keywords: ``<keywords>``
:PythonVersion: 3.10
:PythonVersion: 3.11

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

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

* Python 3.10 or above
* Django 4.2 or newer
* Python 3.9/3.11 or above
* Django 3.2/4.2 or newer


Install
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ classifiers = [
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[tox]
envlist =
py{39}-django{3.2}
py{310,311,312}-django{42}
isort
black
Expand All @@ -9,12 +10,13 @@ skip_missing_interpreters = true

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

[gh-actions:env]
DJANGO =
3.2: django32
4.2: django42

[testenv]
Expand Down

0 comments on commit 0c66de0

Please sign in to comment.