Skip to content

Commit

Permalink
Merge branch 'main' into bf_tc200
Browse files Browse the repository at this point in the history
  • Loading branch information
trappitsch committed Mar 3, 2022
2 parents af41e4e + 408ef66 commit 36d2baf
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Testing

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:

jobs:
Expand Down Expand Up @@ -33,6 +33,8 @@ jobs:
TOXENV: "py39"
- python-version: 3.9
TOXENV: "py39-numpy"
- python-version: "3.10"
TOXENV: "py310"

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ repos:
rev: v4.1.0
hooks:
- id: no-commit-to-branch
args: [--branch, master]
args: [--branch, main]
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
InstrumentKit
=============

.. image:: https://github.com/Galvant/InstrumentKit/workflows/Testing/badge.svg?branch=master
.. image:: https://github.com/Galvant/InstrumentKit/workflows/Testing/badge.svg?branch=main
:target: https://github.com/Galvant/InstrumentKit
:alt: Github Actions build status

.. image:: https://img.shields.io/coveralls/Galvant/InstrumentKit/master.svg?maxAge=2592000
:target: https://coveralls.io/github/Galvant/InstrumentKit?branch=master
.. image:: https://img.shields.io/coveralls/Galvant/InstrumentKit/main.svg?maxAge=2592000
:target: https://coveralls.io/github/Galvant/InstrumentKit?branch=main
:alt: Coveralls code coverage

.. image:: https://readthedocs.org/projects/instrumentkit/badge/?version=latest
Expand Down Expand Up @@ -112,7 +112,7 @@ send, one can use the following functions to do so:
Python Version Compatibility
----------------------------

At this time, Python 3.6, 3.7, 3.8, and 3.9 are supported. Should you encounter
At this time, Python 3.6, 3.7, 3.8, 3.9, and 3.10 are supported. Should you encounter
any problems with this library that occur in one version or another, please
do not hesitate to let us know.

Expand Down
5 changes: 1 addition & 4 deletions license/AUTHOR.TXT
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
Original author:

Galvant Industries
twitter.com/Galvant_Ind

Steven Casagrande
scasagrande@galvant.ca
stevencasagrande@gmail.com
twitter.com/stevecasagrande

2012-2022
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Operating System :: OS Independent
License :: OSI Approved :: GNU Affero General Public License v3
Intended Audience :: Science/Research
Expand All @@ -34,7 +35,7 @@ install_requires =
python-vxi11>=0.8
pyusb>=1.0
pyvisa>=1.9
ruamel.yaml~=0.15.37
ruamel.yaml>=0.16,<0.17

[options.extras_require]
numpy = numpy
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38,39},py{36,37,38,39}-numpy,pylint
envlist = py{36,37,38,39,310},py{36,37,38,39,310}-numpy,pylint
isolated_build = true

[testenv]
Expand Down

0 comments on commit 36d2baf

Please sign in to comment.