Skip to content

Commit

Permalink
Merge pull request #716 from pyvisa/py311
Browse files Browse the repository at this point in the history
drop 3.7 and start testing on 3.11
  • Loading branch information
MatthieuDartiailh committed Dec 9, 2022
2 parents 3dfb15f + 8f0d368 commit abc2fb1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: "3.10"
- name: Install tools
run: |
python -m pip install --upgrade pip
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version: 2
build:
os: ubuntu-20.04
tools:
python: "3.9"
python: "3.10"

# Build documentation in the docs/source directory with Sphinx
sphinx:
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "PyVISA"
description = "Python VISA bindings for GPIB, RS232, TCPIP and USB instruments"
readme = "README.rst"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Torsten Bronger", email = "bronger@physik.rwth-aachen.de"},
Expand Down Expand Up @@ -32,15 +32,14 @@ classifiers = [
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"typing_extensions",
"importlib-metadata; python_version<'3.8'",
"dataclasses; python_version<'3.7'",
]
dynamic=["version"]

Expand Down

0 comments on commit abc2fb1

Please sign in to comment.