Skip to content

Commit

Permalink
build!: Drop support of Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
iamsobanjaved committed Aug 17, 2024
1 parent 55b561e commit b5e605b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8', '3.11']
python-version: ['3.11']
toxenv: [quality, docs, django42-drflatest]

steps:
Expand All @@ -34,7 +34,7 @@ jobs:
run: tox

- name: Run coverage
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42-drflatest'
if: matrix.python-version == '3.11' && matrix.toxenv == 'django42-drflatest'
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: setup python
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: 3.11

- name: Install pip
run: pip install -r requirements/pip.txt
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38, 311}-django{42}-drf{latest}, quality, docs
envlist = py{311}-django{42}-drf{latest}, quality, docs

[testenv]
setenv =
Expand Down

0 comments on commit b5e605b

Please sign in to comment.