Skip to content

Commit

Permalink
ci: disable check with Python 3.7 run on macOS, no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
WeisLeDocto committed May 2, 2024
1 parent 6d5dcdd commit fc6642b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test_python_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,10 @@ jobs:
# Install the crappy Python module
- name: Install Crappy
run: python -m pip install .
# Check if the module imports as expected
# Cannot run for Python 3.7 on macOS as it is not supported anymore
- name: Import Crappy
if: |
contains(fromJSON('["Linux", "Windows"]'), runner.os) ||
contains(fromJSON('["3.8", "3.9", "3.10", "3.11", "3.12"]'), matrix.python-version)
run: python -c "import crappy; print(crappy.__version__)"

0 comments on commit fc6642b

Please sign in to comment.