Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

build(deps-dev): update setuptools requirement from >=40.6.0 to >=82.0.1 in the pip-dependencies group #222

build(deps-dev): update setuptools requirement from >=40.6.0 to >=82.0.1 in the pip-dependencies group

build(deps-dev): update setuptools requirement from >=40.6.0 to >=82.0.1 in the pip-dependencies group #222

Workflow file for this run

name: luma.oled
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-minor-version: [9, 10, 11, 12, 13, 14]
name: Python 3.${{ matrix.python-minor-version }}
steps:
- uses: actions/checkout@v6
- name: Setup pip cache
uses: actions/cache@v5
id: pipcache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-py3${{ matrix.python-minor-version }}-pip-
- name: Install system dependencies
run: sudo apt-get install graphviz
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.${{ matrix.python-minor-version }}
check-latest: true
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install Python packages
run: pip install --upgrade setuptools pip wheel tox coveralls
- name: Run tests
env:
TOX_ENV: py3${{ matrix.python-minor-version }}
run: |
python_env=$(echo $TOX_ENV | sed -e s/-dev$//)
python -m tox -e ${python_env}
- name: QA
env:
TOX_ENV: qa,doc
run: python -m tox -e $TOX_ENV
- name: Coverage
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_FLAG_NAME: ${{ matrix.test-name }}
COVERALLS_PARALLEL: true
coveralls:
name: Coveralls
needs: build
runs-on: ubuntu-latest
container: python:3-slim
steps:
- name: Finished
run: |
pip3 install --upgrade coveralls
coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.