Skip to content

Commit ea237b0

Browse files
committed
Add missing pyparsing deps
1 parent 7fa3e65 commit ea237b0

File tree

9 files changed

+29
-6
lines changed

9 files changed

+29
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ mav.tlog.raw
66
/terrain
77
way.txt
88
/__pycache__
9-
/src/mavez/__pycache__
9+
/src/mavez/__pycache__
10+
*/venv

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
project = "MAVez"
1212
copyright = "2025, The Pennsylvania State University Unmanned Aerial Systems Club"
1313
author = "The Pennsylvania State University Unmanned Aerial Systems Club"
14-
version = "2.0.0"
14+
version = "2.0.1"
1515

1616
# -- General configuration ---------------------------------------------------
1717
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

examples/basic.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from MAVez import flight_controller
2+
3+
controller = flight_controller.FlightController(connection_string='tcp:127.0.0.1:5762')
4+
5+
controller.arm()
6+
7+
controller.takeoff("sample_missions/takeoff.txt")
8+
9+
controller.append_mission("sample_missions/detect_mission.txt")
10+
11+
controller.append_mission("sample_missions/land.txt")
12+
13+
controller.wait_and_send_next_mission()
14+
15+
controller.wait_and_send_next_mission()
16+
17+
controller.await_landing()
18+
19+
controller.disarm()
20+
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,17 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name='MAVez'
7-
version='2.0.0'
7+
version='2.0.1'
88
description='An intuitive MAVLink library for ArduPilot via pymavlink'
99
authors=[
1010
{name='The Pennsylvania State University Unmanned Aerial Systems Club', email='psuuasofficial@gmail.com'}
1111
]
1212
license='GPL-3.0'
1313
readme='README.md'
14-
dependencies=['pymavlink>=2.4.0']
14+
dependencies=[
15+
'pymavlink>=2.4.0',
16+
'pyparsing'
17+
]
1518
classifiers=[
1619
'Development Status :: 4 - Beta',
1720
'Intended Audience :: Developers',
@@ -27,8 +30,7 @@ docs = [
2730
"sphinx>=4.0.0",
2831
"furo",
2932
"sphinx-autodoc-typehints",
30-
"pymavlink>=2.4.0",
31-
"pyparsing"
33+
"pymavlink>=2.4.0"
3234
]
3335

3436
[project.urls]

0 commit comments

Comments
 (0)