Yet another pip fix attempt

This commit is contained in:
Josh Miklos
2020-06-22 17:18:33 -07:00
parent 9841489924
commit bcf6bd6625
3 changed files with 6 additions and 3 deletions
+3 -1
View File
@@ -15,7 +15,9 @@ jobs:
python-version: 3.7
- uses: dschep/install-poetry-action@v1.2
- name: Install and build
run: pip install .[dev] --user
run: python -m ensurepip --user
python -m pip install --upgrade pip --user
python -m pip install .[dev]
- name: Build with Poetry
run: python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to Test PyPI
+3 -1
View File
@@ -19,6 +19,8 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install .[dev] --user
run: python -m ensurepip --user
python -m pip install --upgrade pip --user
python -m pip install .[dev]
- name: Test with tox
run: tox -p auto -o
-1
View File
@@ -51,7 +51,6 @@ setup(
# even though I could install a lot of viruses just from this setup.py
# "linux": ["PyV4L2Cam @ git+https://github.com/SimLeek/PyV4L2Cam"],
"dev": [
"pip==18.1",
"black==18.*,>=18.3.0.a0",
"coverage==4.*,>=4.5.0",
"mock==3.*,>=3.0.0",