Skip to content

Commit b876d96

Browse files
committed
Updated workflows
1 parent 3a7e1e4 commit b876d96

File tree

8 files changed

+15
-14
lines changed

8 files changed

+15
-14
lines changed

.github/workflows/.pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
python-version: [ "3.10" ]
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: actions/setup-python@v4
1717
with:
1818
python-version: ${{ matrix.python-version }}

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout source repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Set up python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v4
2323
with:

.github/workflows/publish-test-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout source repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Set up python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v4
2626
with:

.github/workflows/pylint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
python-version: [ "3.10" ]
19+
python-version: [ "3.10", "3.11" ]
2020

2121
steps:
2222
- name: Checkout source repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
- name: Set up python ${{ matrix.python-version }}
2525
uses: actions/setup-python@v4
2626
with:

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.1.0
5+
rev: v4.4.0
66
hooks:
77
# Check for invalid files
88
- id: check-toml
@@ -14,16 +14,16 @@ repos:
1414
args: [--fix=lf]
1515
- id: check-executables-have-shebangs
1616
- repo: https://github.com/psf/black
17-
rev: 22.6.0
17+
rev: 23.9.1
1818
hooks:
1919
- id: black
2020
- repo: https://github.com/asottile/blacken-docs
21-
rev: v1.12.1
21+
rev: 1.16.0
2222
hooks:
2323
- id: blacken-docs
2424
args: [--line-length=120]
2525
- repo: https://github.com/PyCQA/isort
26-
rev: 5.10.1
26+
rev: 5.12.0
2727
hooks:
2828
- id: isort
2929
- repo: local
@@ -35,6 +35,6 @@ repos:
3535
types: [python]
3636
require_serial: true
3737
- repo: https://github.com/pre-commit/mirrors-mypy
38-
rev: 'v0.961'
38+
rev: 'v1.5.1'
3939
hooks:
4040
- id: mypy

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
[![pylint](https://github.com/PatrickBaus/pyAsyncGpib/actions/workflows/pylint.yml/badge.svg)](https://github.com/PatrickBaus/pyAsyncGpib/actions/workflows/pylint.yml)
1+
[![pylint](../../actions/workflows/pylint.yml/badge.svg)](../../actions/workflows/pylint.yml)
22
[![PyPI](https://img.shields.io/pypi/v/async-gpib)](https://pypi.org/project/async-gpib/)
33
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/async-gpib)
44
![PyPI - Status](https://img.shields.io/pypi/status/async-gpib)
55
[![code style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
66
# async_gpib
7-
Python3 AsyncIO [Linux GPIB Wrapper](https://linux-gpib.sourceforge.io/). The library requires Python
7+
Python3 asyncio [Linux GPIB Wrapper](https://linux-gpib.sourceforge.io/). The library requires Python
88
[asyncio](https://docs.python.org/3/library/asyncio.html) and is a thin wrapper for the threaded Linux GPIB Wrapper
99
library.
1010

@@ -75,7 +75,7 @@ See [examples/](examples/) for more working examples.
7575
7676
## Versioning
7777
I use [SemVer](http://semver.org/) for versioning. For the versions available, see the
78-
[tags on this repository](https://github.com/PatrickBaus/pyAsyncPrologix/tags).
78+
[tags on this repository](../../tags).
7979

8080
## Documentation
8181
I use the [Numpydoc](https://numpydoc.readthedocs.io/en/latest/format.html) style for documentation.

async_gpib/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# pylint: disable=missing-module-docstring
2-
__version__ = "2.1.1"
2+
__version__ = "2.1.2"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3.8",
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
1617
"Development Status :: 5 - Production/Stable",
1718
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
1819
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)