Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for versions of LLDB linked with Python 2.7 #65

Merged
merged 1 commit into from
Jul 18, 2024
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
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
- '3.9'
- '3.10'
lldb_version:
- '7'
- '9'
- '10'
- '11'
Expand Down
5 changes: 1 addition & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ RUN if [ "${LLDB_VERSION}" = "9" ]; then \
# The deb package is missing this symlink; lldb won't work w/o it
ln -s /usr/lib/llvm-9/bin/lldb-server-9 /usr/lib/llvm-9/bin/lldb-server-9.0.1; \
fi && \
if [ "${LLDB_VERSION}" != "7" ]; then \
# In newer versions support for Python scripting is provided via a separate package
apt-get install -y python3-lldb-${LLDB_VERSION}; \
fi
apt-get install -y python3-lldb-${LLDB_VERSION}

ENV PYTHONPATH /usr/lib/llvm-${LLDB_VERSION}/lib/python3/dist-packages

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,6 @@ Supported CPython versions are:
* `3.10`

Supported LLDB versions:
* `7`
* `8`
* `9`
* `10`
* `11`
Expand Down
Loading
Loading