From fdb2b8de05e66a89f1dab6cbe4f43070eab89830 Mon Sep 17 00:00:00 2001 From: himoto Date: Tue, 19 Nov 2024 18:33:32 +0000 Subject: [PATCH] Drop support for Python 3.6 --- .github/workflows/CI.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1a8b09c..4e71e30 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -13,7 +13,7 @@ jobs: # Disabling Windows tests as it's known to not work: # https://github.com/SciML/diffeqpy/pull/86#issuecomment-1011675735 # - windows-latest - python-version: ['3.6', '3.12'] + python-version: ['3.8', '3.12'] fail-fast: false name: Test ${{ matrix.os }} ${{ matrix.architecture }} Python ${{ matrix.python-version }} diff --git a/tox.ini b/tox.ini index e925450..2cac1a4 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ deps = pytest pytest-cov commands = - python -c 'import diffeqpy; diffeqpy.install()' + python -c 'import diffeqpy; diffeqpy.install(confirm=True)' py.test \ --pyargs diffeqpy \ {posargs}