Skip to content

Commit

Permalink
Merge pull request #17 from pimoroni/patch-bitrot
Browse files Browse the repository at this point in the history
Fix various bitrot problems.
  • Loading branch information
Gadgetoid committed Jun 14, 2023
2 parents 709ef16 + 0fa6400 commit 045b0e4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6, 3.7, 3.9]
python: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand All @@ -33,5 +33,5 @@ jobs:
run: |
python -m pip install coveralls
coveralls --service=github
if: ${{ matrix.python == '3.9' }}
if: ${{ matrix.python == '3.11' }}

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pimoroni PA1010D GPS Breakout

[![Build Status](https://shields.io/github/workflow/status/pimoroni/pa1010d-python/Python%20Tests.svg)](https://github.com/pimoroni/pa1010d-python/actions/workflows/test.yml)
[![Build Status](https://img.shields.io/github/actions/workflow/status/pimoroni/pa1010d-python/test.yml?branch=master)](https://github.com/pimoroni/pa1010d-python/actions/workflows/test.yml)
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/pa1010d-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/pa1010d-python?branch=master)
[![PyPi Package](https://img.shields.io/pypi/v/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)
[![Python Versions](https://img.shields.io/pypi/pyversions/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)
Expand Down
3 changes: 2 additions & 1 deletion library/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pimoroni PA1010D GPS Breakout

[![Build Status](https://shields.io/github/workflow/status/pimoroni/pa1010d-python/Python%20Tests.svg)](https://github.com/pimoroni/pa1010d-python/actions/workflows/test.yml)
[![Build Status](https://img.shields.io/github/actions/workflow/status/pimoroni/pa1010d-python/test.yml?branch=master)](https://github.com/pimoroni/pa1010d-python/actions/workflows/test.yml)
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/pa1010d-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/pa1010d-python?branch=master)
[![PyPi Package](https://img.shields.io/pypi/v/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)
[![Python Versions](https://img.shields.io/pypi/pyversions/pa1010d.svg)](https://pypi.python.org/pypi/pa1010d)
Expand Down Expand Up @@ -32,6 +32,7 @@ Stable (library only) from PyPi:
* Just run `python3 -m pip install pa1010d`

# Changelog

0.0.4
-----

Expand Down
4 changes: 2 additions & 2 deletions library/tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tox]
envlist = py{36,37,38,39},qa
envlist = py,qa
skip_missing_interpreters = True

[testenv]
commands =
python setup.py install
coverage run -m py.test -v -r wsx
coverage run -m pytest -v -r wsx
coverage report
deps =
mock
Expand Down

0 comments on commit 045b0e4

Please sign in to comment.