Skip to content

Commit

Permalink
Merge pull request #36 from Ledenel/pyinstaller-compactibility
Browse files Browse the repository at this point in the history
pyinstaller-compactibility
  • Loading branch information
Ledenel authored Jan 24, 2020
2 parents 69fcfef + cc75e61 commit 1f8bac3
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/pyinstallerbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,10 @@ jobs:
python-version: 3.8
- name: Setup Project dependencies
run: |
pip install pipenv
pipenv sync
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Build windows exectuable
run: |
pipenv shell
./pyinstaller-build.bat
- name: Publish to github
uses: skx/github-action-publish-binaries@master
Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ pandas = "*"
pytest = "*"
pyinstaller = "*"
setuptools = "==44.0.0"
pipenv-to-requirements = "*"

[packages]
numpy = "*"
Expand Down
39 changes: 38 additions & 1 deletion Pipfile.lock

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

19 changes: 19 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
################################################################################
# This requirements file has been automatically generated from `Pipfile` with
# `pipenv-to-requirements`
#
#
# This has been done to maintain backward compatibility with tools and services
# that do not support `Pipfile` yet.
#
# Do NOT edit it directly, use `pipenv install [-d]` to modify `Pipfile` and
# `Pipfile.lock` and then regenerate `requirements*.txt`.
################################################################################

beautifulsoup4
pandas
pipenv-setup
pipenv-to-requirements
pyinstaller
pytest
setuptools==44.0.0
17 changes: 17 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
################################################################################
# This requirements file has been automatically generated from `Pipfile` with
# `pipenv-to-requirements`
#
#
# This has been done to maintain backward compatibility with tools and services
# that do not support `Pipfile` yet.
#
# Do NOT edit it directly, use `pipenv install [-d]` to modify `Pipfile` and
# `Pipfile.lock` and then regenerate `requirements*.txt`.
################################################################################

bitstruct
jinja2
loguru
numpy
requests

0 comments on commit 1f8bac3

Please sign in to comment.