Skip to content

Commit

Permalink
pyinstaller v6.0.0 (#99)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] committed Sep 24, 2023
2 parents 1cfb4d3 + 46f71e1 commit f472b89
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 69 deletions.
5 changes: 0 additions & 5 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 8 additions & 45 deletions .azure-pipelines/azure-pipelines-win.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .scripts/logging_utils.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 9 additions & 7 deletions .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

115 changes: 115 additions & 0 deletions .scripts/run_win_build.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "pyinstaller" %}
{% set version = "5.13.0" %}
{% set sha256 = "5e446df41255e815017d96318e39f65a3eb807e74a796c7e7ff7f13b6366a2e9" %}
{% set version = "6.0.0" %}
{% set sha256 = "d702cff041f30e7a53500b630e07b081e5328d4655023319253d73935e75ade2" %}

package:
name: {{ name.lower() }}
Expand Down Expand Up @@ -34,7 +34,7 @@ build:
# Build the bootloader
- pushd bootloader
- waf --prefix="${PREFIX}" --clang distclean all # [osx]
- waf --prefix="${PREFIX}" --gcc --no-lsb distclean all # [linux]
- waf --prefix="${PREFIX}" --gcc distclean all # [linux]
- waf --prefix="%LIBRARY_PREFIX%" distclean all # [win]
# Build the package
- popd
Expand All @@ -57,14 +57,15 @@ requirements:

run:
- altgraph
- packaging >=20.0
- python
- pefile >=2022.5.30 # [win]
- pywin32 # [win]
- pywin32-ctypes >=0.2.0 # [win]
- macholib >=1.8
- pywin32-ctypes >=0.2.1 # [win]
- macholib >=1.8 # [osx]
- pyinstaller-hooks-contrib >=2021.4
- setuptools # due to pkg_resources import
- importlib-metadata >=0.8 # [py<38]
- setuptools >=42.0.0
- importlib-metadata >=4.6 # [py<310]

test:
imports:
Expand Down

0 comments on commit f472b89

Please sign in to comment.