Skip to content

Commit

Permalink
Build fix:
Browse files Browse the repository at this point in the history
 - Added MANIFEST.in
 - Updated Github wrkflow: updated actions/checkout@v3 to v4 and actions/setup-python@v3 to v4, removed unsupported Python versions.
  • Loading branch information
MrCheatak committed Jul 12, 2024
1 parent 7f0317b commit dda698e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
include:
- arch: arm64
os: macos-latest
pypthon-version: "3.7-3.11"
pypthon-version: "3.9-3.11"

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt

0 comments on commit dda698e

Please sign in to comment.