Skip to content

Commit 8770f56

Browse files
committed
Drop Python 3.7
1 parent 3ea1efe commit 8770f56

4 files changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
1212
services:
1313
yamcs:
1414
image: yamcs/example-simulation
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v4
3737
- uses: actions/setup-python@v5
3838
with:
39-
python-version: 3.7
39+
python-version: 3.8
4040
- name: Install dependencies
4141
run: |
4242
pip install --upgrade pip
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@v4
5252
- uses: actions/setup-python@v5
5353
with:
54-
python-version: 3.7
54+
python-version: 3.8
5555
- name: Set up sphinx
5656
run: |
5757
python -m pip install --upgrade pip

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Python Yamcs Client
33

44
.. rubric:: Getting Started
55

6-
Install Python 3.7 or higher.
6+
Install Python 3.8 or higher.
77

88
Install ``yamcs-client`` from PyPI::
99

yamcs-client-kerberos/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,13 @@
1717
license="LGPL",
1818
packages=setuptools.find_namespace_packages(where="src"),
1919
package_dir={"": "src"},
20-
python_requires=">=3.7",
20+
python_requires=">=3.8",
2121
classifiers=[
2222
"Development Status :: 5 - Production/Stable",
2323
"Intended Audience :: Developers",
2424
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
2525
"Programming Language :: Python",
2626
"Programming Language :: Python :: 3",
27-
"Programming Language :: Python :: 3.7",
2827
"Programming Language :: Python :: 3.8",
2928
"Programming Language :: Python :: 3.9",
3029
"Programming Language :: Python :: 3.10",

yamcs-client/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@
2222
license="LGPL",
2323
packages=setuptools.find_namespace_packages(where="src"),
2424
package_dir={"": "src"},
25-
python_requires=">=3.7",
25+
python_requires=">=3.8",
2626
classifiers=[
2727
"Development Status :: 5 - Production/Stable",
2828
"Intended Audience :: Developers",
2929
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
3030
"Programming Language :: Python",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)