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
27 changes: 27 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run tests on supported Python versions

on: [push, pull_request, workflow_dispatch]

jobs:
extensive_tests:
name: Run tests on Python ${{ matrix.python }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
os: ["ubuntu-latest"]

steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python }}"

- name: Run tests
run: make clean && make dev && make test
22 changes: 15 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
Changelog
=========


v0.1.0
v0.1.2
------

Initial release with support for:
Bugfix release to fix click compatibility issues:

* Update commoncode to latest v32.3.0 with click compatibility fixes

* Get parsed list of demangled and cleaned symbols from a winpe binary
* Get parsed list of demangled and cleaned symbols from a macho binary
* scancode-toolkit plugins for collecting symbols from macho and winpe binaries
with the CLI option --winpe-symbol --macho-symbol

v0.1.1
------
Expand All @@ -19,3 +16,14 @@ Bugfix release as the intial release had empty wheels:

* Fix binary-inspector wheels to have the necessary modules.
* Update to latest skeleton


v0.1.0
------

Initial release with support for:

* Get parsed list of demangled and cleaned symbols from a winpe binary
* Get parsed list of demangled and cleaned symbols from a macho binary
* scancode-toolkit plugins for collecting symbols from macho and winpe binaries
with the CLI option --winpe-symbol --macho-symbol
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
# https://github.com/owasp-dep-scan/blint/blob/1e1250a4bf6c25eccba8970bd877901ee56070c7/poetry.lock
lief==0.15.1
symbolic==10.2.1
click==8.2.1;python_version>='3.10'
click==8.1.7;python_version<'3.10'
commoncode==32.3.0
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ setup_requires = setuptools_scm[toml] >= 4
python_requires = >=3.9

install_requires =
click<8.2
click >= 6.7, !=7.0;python_version<'3.10'
click >= 8.2.0;python_version>='3.10'
commoncode
plugincode
typecode
Expand Down