Skip to content

Commit

Permalink
Merge pull request #173 from boxine/drop-python3.9
Browse files Browse the repository at this point in the history
Drop Python3.9 and regenerate lockfile with 3.10
  • Loading branch information
jedie authored Oct 29, 2024
2 parents 2b48c43 + 788abb8 commit c4f6c4e
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 60 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.12", "3.11", "3.10", "3.9"]
python-version: ["3.12", "3.11", "3.10"]
django-version: ["5.0", "4.2"]
exclude:
- django-version: "5.0"
python-version: "3.9"
steps:
- name: Checkout
run: |
Expand Down
104 changes: 52 additions & 52 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions bx_django_utils_tests/tests/test_readme.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import sys
from pathlib import Path
from unittest import TestCase

Expand All @@ -9,7 +8,6 @@

class Readme(TestCase):
def test_auto_doc_in_readme(self):
assert sys.version_info >= (3, 9), 'requires Python v3.9 or newer'
root_path = Path(bx_django_utils.__file__).parent.parent
readme_path = root_path / 'README.md'

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ authors = [
classifiers = [
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
'Framework :: Django',
'Intended Audience :: Developers',
Expand Down Expand Up @@ -129,7 +129,6 @@ legacy_tox_ini = """
[tox]
isolated_build = True
envlist =
py39-django42
py{310,311,312}-django{42,50}
skip_missing_interpreters = True
Expand Down

0 comments on commit c4f6c4e

Please sign in to comment.