diff options
author | navanchauhan <navanchauhan@gmail.com> | 2023-05-15 21:24:35 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2023-05-15 21:24:35 -0600 |
commit | a94dce1f45166d23d014cc94dde24f6bce6b7ce4 (patch) | |
tree | fc72597d2f3caae649afad864fac94e85456cc35 | |
parent | d7d6f1fc71608a4c1ccb6e4dffe28202314a1832 (diff) |
remove poetry
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b6f527..6570923 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: macos-latest + runs-on: windows-latest # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -28,7 +28,7 @@ jobs: - name: Package for Windows run: | pip install pyinstaller pandas xlrd openpyxl Pillow matplotlib - python pyinstaller --add-data "assets:assets" -w main.py + python -m pyinstaller --add-data "assets;assets" -w main.py - uses: actions/upload-artifact@v3 with: name: pyramid-scheme |