Skip to content

Commit 831abda

Browse files
committed
Bump Python version requirements
1 parent 5d278b5 commit 831abda

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
micromamba-version: '2.0.2-1' # any version from https://github.com/mamba-org/micromamba-releases
1313
environment-name: test-env
1414
init-shell: bash
15-
create-args: python=3.8
15+
create-args: python=3.10
1616
cache-environment: true
1717
- name: Install dependencies and package
1818
run: pip install .

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![Python Version]][Python Version URL] [![Ruff Check]][Ruff Check URL] [![Documentation Status]][Documentation Status URL] [![Tests]][Tests URL]
88

9-
[Python Version]: https://img.shields.io/badge/python-3.8-blue.svg
9+
[Python Version]: https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12-blue
1010
[Python Version URL]: https://www.python.org
1111

1212
[Ruff Check]: https://github.com/utiasDSL/lsy_drone_racing/actions/workflows/ruff.yml/badge.svg?style=flat-square

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ version = "0.0.1"
88
description = "LSY Autonomous Drone Racing Project Course"
99
readme = "README.md"
1010
license = { file = "LICENSE" }
11+
requires-python = ">=3.10"
1112
classifiers = [
1213
"License :: OSI Approved :: MIT License",
1314
"Programming Language :: Python",
1415
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3.11",
1517
"Intended Audience :: Developers",
1618
"Intended Audience :: Education",
1719
"Intended Audience :: Science/Research",
@@ -64,7 +66,7 @@ exclude = [
6466

6567
line-length = 100
6668
indent-width = 4
67-
target-version = "py38"
69+
target-version = "py311"
6870

6971
[tool.ruff.lint]
7072
select = ["E4", "E7", "E9", "F", "I", "D", "TCH", "ANN"]

0 commit comments

Comments
 (0)