From 9505ea82780525ffac8a23affd11f31753351373 Mon Sep 17 00:00:00 2001 From: Selwin Ong Date: Wed, 24 Jul 2024 15:55:01 +0700 Subject: [PATCH] Updated test matrix. (#127) * Updated test matrix. * Exclude Python 3.9 from tests --- .github/workflows/test.yml | 4 ++-- .travis.yml | 18 ------------------ 2 files changed, 2 insertions(+), 20 deletions(-) delete mode 100644 .travis.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ce70805..0899b8e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,8 +21,8 @@ jobs: - 6379:6379 strategy: matrix: - python-version: [3.8.15, 3.9, 3.10.9] - django-version: [2.1.3, 2.2.9, 3.0.11, 3.1.1, 4.0, 4.1.4] + python-version: [3.10.9, 3.11, 3.12] + django-version: [3.2.25, 4.0, 4.1.4, 4.2.14, 5.0.7] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 2456a9d..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: python - -python: - - "3.5" - - "3.6" - - "3.7" - -env: - - DJANGO=2.0.9 - - DJANGO=2.1.3 - - DJANGO=2.2.9 - -install: - - pip install Django==$DJANGO times da-vinci pillow redis shortuuid - - sudo apt-get install -qq optipng - -script: make test -services: redis