Skip to content

Commit 1ff5f61

Browse files
authored
Merge pull request #12 from jameswniu/codex/investigate-failure-details
Pin CI to Python 3.10
2 parents 7bf2656 + 030a2f6 commit 1ff5f61

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
language: [ 'python' ]
2020
steps:
2121
- uses: actions/checkout@v3
22+
- name: Set up Python
23+
uses: actions/setup-python@v4
24+
with:
25+
python-version: "3.10"
2226
- uses: github/codeql-action/init@v2
2327
with:
2428
languages: ${{ matrix.language }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Weighted scores are combined and tested for stability. The Alignment Policy sele
6565

6666
## Installation
6767

68-
Clone the repository and install dependencies:
68+
Clone the repository and install dependencies (ensure you are using Python 3.10):
6969

7070
git clone <repo-url>
7171
cd multi-agent-rl-mapf-drone-system

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "multi-agent-rl-mapf-drone-system"
99
version = "0.1.0"
1010
description = "Multi-agent reinforcement learning and MAPF drone coordination system"
1111
readme = "README.md"
12-
requires-python = ">=3.9"
12+
requires-python = ">=3.9,<3.12"
1313
license = { file = "LICENSE" }
1414

1515
authors = [

0 commit comments

Comments
 (0)