Merge pull request #1523 from pijyoi/lose_six

This commit is contained in:
Ogi Moore 2021-01-29 05:11:42 -08:00 committed by GitHub
commit e9eb8d50b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 2 additions and 5 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install PyQt5 numpy scipy six
pip install PyQt5 numpy scipy
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
# Initializes the CodeQL tools for scanning.

View File

@ -70,7 +70,7 @@ jobs:
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install ${{ matrix.qt-version }} numpy${{ matrix.numpy-version }} scipy pyopengl h5py six matplotlib
pip install ${{ matrix.qt-version }} numpy${{ matrix.numpy-version }} scipy pyopengl h5py matplotlib
pip install .
pip install pytest pytest-cov pytest-xdist coverage
- name: "Install Linux VirtualDisplay"

View File

@ -4,7 +4,6 @@ import sys
import subprocess
import tempfile
import pyqtgraph as pg
import six
import pytest
import textwrap
import time

View File

@ -6,7 +6,6 @@ Test for unwanted reference cycles
import pyqtgraph as pg
import numpy as np
import gc, weakref
import six
import pytest
app = pg.mkQApp()

View File

@ -16,7 +16,6 @@ deps =
scipy
pyopengl
flake8
six
coverage
[testenv]