Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/docs-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,21 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: 3.13

- name: Cache Python dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
pip install -r docs/requirements.txt

- name: Generate API stubs
Expand Down
15 changes: 6 additions & 9 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
furo>=2024.8.6
Sphinx>=7.2
myst-parser>=2.0
sphinx-autodoc-typehints>=2.2
sphinx-autobuild==2024.8.25
sphinx_rtd_theme==7.3.1

# Ensure imports succeed during autodoc
paho-mqtt>=2.0
furo==2025.7.19
Sphinx==8.2.3
myst-parser==4.0.1
sphinx-autodoc-typehints==3.2.0
sphinx-autobuild==2025.8.25
sphinx_rtd_theme==3.0.2
11 changes: 8 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ build-backend = "setuptools.build_meta"
name = "py-swarm-robot"
version = "0.1.0"
description = "A modular robot control library"
authors = [{name = "Nuwan Jaliyagoda", email = "nuwanjaliyagoda@gmail.com"},{name = "Nuwan Jaliyagoda", email = "kavindumethpura@gmail.com"},{name = "Kavindu Prabhath Methpura", email = "kavindumethpura@gmail.com"}]
authors = [
{ name = "Nuwan Jaliyagoda", email = "nuwanjaliyagoda@gmail.com" },
{ name = "Nuwan Jaliyagoda", email = "kavindumethpura@gmail.com" },
Copy link

Copilot AI Sep 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line 11 has incorrect author information - 'Nuwan Jaliyagoda' is associated with 'kavindumethpura@gmail.com' email, which appears to belong to Kavindu Prabhath Methpura based on line 12.

Suggested change
{ name = "Nuwan Jaliyagoda", email = "kavindumethpura@gmail.com" },

Copilot uses AI. Check for mistakes.
{ name = "Kavindu Prabhath Methpura", email = "kavindumethpura@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
requires-python = ">=3.13"
license = { file = "LICENSE" }
dependencies = ["paho-mqtt"]

[tool.setuptools.packages.find]
where = ["src"]
Loading