Skip to content

Commit 8c6f2f9

Browse files
committed
Issue #170: Deprecate false Python 3.9 support
1 parent cfa970e commit 8c6f2f9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/commit_checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
python-version: ["3.9", "3.10", "3.11"]
44+
python-version: ["3.10", "3.11"]
4545
steps:
4646
- uses: actions/checkout@v4
47-
- name: Set up Python 3.10
47+
- name: Set up Python ${{ matrix.python-version }}
4848
uses: actions/setup-python@v5
4949
with:
5050
python-version: ${{ matrix.python-version }}

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ authors = [
1111
]
1212
description = "RL environments and tools for spacecraft autonomy research, built on Basilisk. Developed by the AVS Lab."
1313
readme = "README.md"
14-
requires-python = ">=3.9.0"
14+
requires-python = ">=3.10.0"
1515
license = { text = "MIT" }
1616
dependencies = [
1717
"Deprecated",

0 commit comments

Comments
 (0)