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
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
TARGET: ubuntu
CMD_BUILD: >
pyinstaller --onefile cli.py -n cli --additional-hooks-dir=hooks --hidden-import=pkg_resources.extern --add-binary "LICENSE:LICENSES" --add-binary "LICENSES/LicenseRef-3rd_party_licenses.txt:LICENSES" &&
mv dist/cli fosslight_bin_ubuntu18
OUT_FILE_NAME: fosslight_bin_ubuntu18
mv dist/cli fosslight_bin_ubuntu
OUT_FILE_NAME: fosslight_bin_ubuntu
ASSET_MIME: application/octet-stream
- os: macos-latest
TARGET: macos
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
python-version: [3.12.x]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: '3.12.x'
python-version: ${{ matrix.python-version }}
- name: Install & Run
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ binaryornot
numpy
pandas
parmap
psycopg2-binary==2.9.9
psycopg2-binary
python-dateutil
py-tlsh
pytz
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
download_url='https://github.com/fosslight/fosslight_binary_scanner',
classifiers=['License :: OSI Approved :: Apache Software License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", ],
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"],
python_requires='>=3.10,<3.13',
install_requires=install_requires,
extras_require={
':sys_platform == "win32"': [
Expand Down