Skip to content

Commit

Permalink
Remove support for Python 3.9 (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHjelmare authored Dec 26, 2024
1 parent 6a89061 commit 9b3f721
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5.3.0
with:
python-version: "3.9"
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"

steps:
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ formats: all

# Optionally set the version of Python and requirements required to build your docs
python:
version: "3.9"
version: "3.10"
install:
- requirements: docs/requirements.txt
- path: .
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Control Leica microscopes with python

## Installation

- **The latest version of leicacam requires Python 3.9+**
- **The latest version of leicacam requires Python 3.10+**
- If you need to keep using Python 2.7, pin your version of leicacam to 0.3.0.

Install using `pip`:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
url="https://github.com/MartinHjelmare/leicacam",
packages=find_packages(exclude=["test", "test.*"]),
include_package_data=True,
python_requires=">=3.9",
python_requires=">=3.10",
install_requires=["async_timeout", "pydebug"],
license="MIT",
zip_safe=False,
Expand All @@ -34,7 +34,6 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
[tox]
envlist = py39, py310, lint, docs
envlist = py310, lint, docs
skip_missing_interpreters = True

[gh-actions]
python =
3.9: py39, docs, lint
3.10: py310
3.10: py310, docs, lint

[testenv]
setenv =
Expand Down

0 comments on commit 9b3f721

Please sign in to comment.