about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2022-11-05 10:48:56 +0100
committerGitHub <noreply@github.com>2022-11-05 10:48:56 +0100
commitd82c9ef57fa48eb254e2547f8a128bbc75b7e966 (patch)
tree4ffcba78eb0aaa767a09cf93ee477ddfa74f8179
parent376e5a768021ad6d809ac0be9391d9164bad84a3 (diff)
parentb59c4b2e83c95ff367a83bbd8ee396c2498483d9 (diff)
downloadmiasm-d82c9ef57fa48eb254e2547f8a128bbc75b7e966.tar.gz
miasm-d82c9ef57fa48eb254e2547f8a128bbc75b7e966.zip
Merge pull request #1437 from mrexodia/remove-python27
Remove Python 2.7 from CI
-rw-r--r--.appveyor.yml12
-rw-r--r--.github/workflows/tests.yml6
2 files changed, 3 insertions, 15 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index a518626f..2d673193 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -10,18 +10,6 @@ environment:
     - platform: Win32
       APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
       PLATFORM_TOOLSET: v141
-      PYTHON: c:\Python27
-      PYTHON_VERSION: "2.7.x"
-
-    - platform: x64
-      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
-      PLATFORM_TOOLSET: v141
-      PYTHON: c:\Python27-x64
-      PYTHON_VERSION: "2.7.x"
-
-    - platform: Win32
-      APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
-      PLATFORM_TOOLSET: v141
       PYTHON: c:\Python38
       PYTHON_VERSION: "3.8.x"
 
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 49e10e60..d5885ca6 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -7,15 +7,15 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: ['2.7', '3.6', '3.8', '3.10']
+        python-version: ['3.6', '3.8', '3.10']
 
     steps:
 
     - name: Git checkout
-      uses: actions/checkout@v2
+      uses: actions/checkout@v3
 
     - name: Use Python ${{ matrix.python-version }}
-      uses: actions/setup-python@v2
+      uses: actions/setup-python@v4
       with:
         python-version: ${{ matrix.python-version }}