diff options
author | navanchauhan <navanchauhan@gmail.com> | 2023-05-15 21:22:57 -0600 |
---|---|---|
committer | navanchauhan <navanchauhan@gmail.com> | 2023-05-15 21:22:57 -0600 |
commit | d7d6f1fc71608a4c1ccb6e4dffe28202314a1832 (patch) | |
tree | 45e416de0e26e080e1e06173ed93a26446039ce5 /.github | |
parent | 5edb1baaa54ddc20d1ae21bbe8f96627c9570ab4 (diff) |
remove poetry
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4557690..0b6f527 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,14 +25,10 @@ jobs: - uses: actions/setup-python@v4 with: python-version: "3.9" - - name: Setup Poetry - uses: abatilo/actions-poetry@v2 - with: - poetry-version: 1.1.6 - name: Package for Windows run: | - poetry install - poetry run pyinstaller --add-data "assets:assets" -w main.py + pip install pyinstaller pandas xlrd openpyxl Pillow matplotlib + python pyinstaller --add-data "assets:assets" -w main.py - uses: actions/upload-artifact@v3 with: name: pyramid-scheme |