Skip to content

Commit

Permalink
Remove python2 and pywbem 0.7.0 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Napsty committed Oct 25, 2024
1 parent e63f9fe commit 602651d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/python3check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install latest pywbem from pip
run: |
sudo apt-get install -qq -yy python3-pip
sudo apt-get install -qq -yy python3 python3-pip
pip3 install pywbem
- name: Set environment PYTHONPATH
run: |
export PYTHONPATH=/opt/hostedtoolcache/Python/3.8.0/x64/lib/python3.8/site-packages:${PYTHONPATH}
- name: Verify python sys.path
run: (echo "import sys"; echo "print(', '.join(sys.path))") | python
run: (echo "import sys"; echo "print(', '.join(sys.path))") | python3
- name: Launch script with --help
run: |
./check_esxi_hardware.py --help

0 comments on commit 602651d

Please sign in to comment.