diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index bbebf95f..7f7c36e6 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -15,7 +15,7 @@ jobs: matrix: os: - windows-latest - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: 'Set up Python ${{ matrix.python-version }}' uses: actions/setup-python@v4 @@ -34,7 +34,7 @@ jobs: matrix: os: - ubuntu-latest - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: 'Set up Python ${{ matrix.python-version }}' uses: actions/setup-python@v4 @@ -55,7 +55,7 @@ jobs: matrix: os: - macos-latest - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - name: 'Set up Python ${{ matrix.python-version }}' uses: actions/setup-python@v4 diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f324106e..aea9e8c2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,3 @@ -test 3.8: - image: python:3.8 - stage: test - before_script: - - pip install responses - - pip install -r requirements.txt - - pip install coveralls - script: - - cd ./tests - - coverage run --source=.. --omit=../lib/* ./all_tests.py - when: manual - rules: - - if: $CI_COMMIT_BRANCH == "main" - - if: $CI_COMMIT_BRANCH == "dev" - test 3.9: image: python:3.9 stage: test @@ -73,3 +58,18 @@ test 3.12: - if: $CI_COMMIT_BRANCH == "main" - if: $CI_COMMIT_BRANCH == "dev" +test 3.13: + image: python:3.13 + stage: test + before_script: + - pip install responses + - pip install -r requirements.txt + - pip install coveralls + script: + - cd ./tests + - coverage run --source=.. --omit=../lib/* ./all_tests.py + when: manual + rules: + - if: $CI_COMMIT_BRANCH == "main" + - if: $CI_COMMIT_BRANCH == "dev" +