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
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!--
A new scriv changelog fragment.

Uncomment the section that is right (remove the HTML comment wrapper).
For top level release notes, leave all the headers commented out.
-->

<!--
### Removed

- A bullet item for the Removed category.

-->
<!--
### Added

- A bullet item for the Added category.

-->
<!--
### Changed

- A bullet item for the Changed category.

-->
<!--
### Deprecated

- A bullet item for the Deprecated category.

-->

### Fixed

- Remove PyInstaller's pkg_resources deprecation warning when running PyInstaller-based ggshield.
<!--

### Security

- A bullet item for the Security category.

-->
2 changes: 1 addition & 1 deletion scripts/build-os-packages/build-os-packages
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ step_build() {
extra_args="--strip"
fi

pyinstaller ggshield/__main__.py --name ggshield --noupx $extra_args
pyinstaller ggshield/__main__.py --name ggshield --exclude-module pkg_resources --noupx $extra_args

if [ "$HUMAN_OS" != Windows ] ; then
# Libraries do not need to be executable
Expand Down