File tree Expand file tree Collapse file tree 8 files changed +15
-14
lines changed Expand file tree Collapse file tree 8 files changed +15
-14
lines changed Original file line number Diff line number Diff line change 12
12
python-version : [ "3.10" ]
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
- uses : actions/setup-python@v4
17
17
with :
18
18
python-version : ${{ matrix.python-version }}
Original file line number Diff line number Diff line change 17
17
18
18
steps :
19
19
- name : Checkout source repository
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
- name : Set up python ${{ matrix.python-version }}
22
22
uses : actions/setup-python@v4
23
23
with :
Original file line number Diff line number Diff line change 20
20
21
21
steps :
22
22
- name : Checkout source repository
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
- name : Set up python ${{ matrix.python-version }}
25
25
uses : actions/setup-python@v4
26
26
with :
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
16
16
17
17
strategy :
18
18
matrix :
19
- python-version : [ "3.10" ]
19
+ python-version : [ "3.10", "3.11" ]
20
20
21
21
steps :
22
22
- name : Checkout source repository
23
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
24
24
- name : Set up python ${{ matrix.python-version }}
25
25
uses : actions/setup-python@v4
26
26
with :
Original file line number Diff line number Diff line change 2
2
# See https://pre-commit.com/hooks.html for more hooks
3
3
repos :
4
4
- repo : https://github.com/pre-commit/pre-commit-hooks
5
- rev : v4.1 .0
5
+ rev : v4.4 .0
6
6
hooks :
7
7
# Check for invalid files
8
8
- id : check-toml
@@ -14,16 +14,16 @@ repos:
14
14
args : [--fix=lf]
15
15
- id : check-executables-have-shebangs
16
16
- repo : https://github.com/psf/black
17
- rev : 22.6.0
17
+ rev : 23.9.1
18
18
hooks :
19
19
- id : black
20
20
- repo : https://github.com/asottile/blacken-docs
21
- rev : v1.12.1
21
+ rev : 1.16.0
22
22
hooks :
23
23
- id : blacken-docs
24
24
args : [--line-length=120]
25
25
- repo : https://github.com/PyCQA/isort
26
- rev : 5.10.1
26
+ rev : 5.12.0
27
27
hooks :
28
28
- id : isort
29
29
- repo : local
35
35
types : [python]
36
36
require_serial : true
37
37
- repo : https://github.com/pre-commit/mirrors-mypy
38
- rev : ' v0.961 '
38
+ rev : ' v1.5.1 '
39
39
hooks :
40
40
- id : mypy
Original file line number Diff line number Diff line change 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)
2
2
[ ![ PyPI] ( https://img.shields.io/pypi/v/async-gpib )] ( https://pypi.org/project/async-gpib/ )
3
3
![ PyPI - Python Version] ( https://img.shields.io/pypi/pyversions/async-gpib )
4
4
![ PyPI - Status] ( https://img.shields.io/pypi/status/async-gpib )
5
5
[ ![ code style] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/psf/black )
6
6
# 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
8
8
[ asyncio] ( https://docs.python.org/3/library/asyncio.html ) and is a thin wrapper for the threaded Linux GPIB Wrapper
9
9
library.
10
10
@@ -75,7 +75,7 @@ See [examples/](examples/) for more working examples.
75
75
76
76
## Versioning
77
77
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) .
79
79
80
80
## Documentation
81
81
I use the [ Numpydoc] ( https://numpydoc.readthedocs.io/en/latest/format.html ) style for documentation.
Original file line number Diff line number Diff line change 1
1
# pylint: disable=missing-module-docstring
2
- __version__ = "2.1.1 "
2
+ __version__ = "2.1.2 "
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ classifiers = [
13
13
" Programming Language :: Python :: 3.8" ,
14
14
" Programming Language :: Python :: 3.9" ,
15
15
" Programming Language :: Python :: 3.10" ,
16
+ " Programming Language :: Python :: 3.11" ,
16
17
" Development Status :: 5 - Production/Stable" ,
17
18
" License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
18
19
" Operating System :: OS Independent" ,
You can’t perform that action at this time.
0 commit comments