sageteamorg / django-sage-tools

Reusable, generic mixins for Django
MIT License
6 stars 5 forks source link

🔧 Missing Tox Config #34

Closed ARYAN-NIKNEZHAD closed 3 months ago

ARYAN-NIKNEZHAD commented 3 months ago

Description

Expected Behavior:

tox configuration to include environments for py38-django50 and py39-django50 to ensure that tests are run against Django 5.x with Python 3.8 and 3.9.

Steps to Reproduce:

  1. Review the current tox configuration.
  2. Note that only Python 3.10 and above are tested with Django 5.x.
  3. Attempt to run tests with Python 3.8 or 3.9 against Django 5.x.

Proposed Solution:

Update the envlist in tox to include:


envlist =
    py38-django40, py39-django40, py310-django40, py311-django40, py312-django40,
    py38-django50, py39-django50, py310-django50, py311-django50, py312-django50