Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: upgrade Python versions #574

Merged
merged 3 commits into from
Apr 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,12 @@ jobs:
python-version: 3.6
- os: ubuntu-20.04
python-version: 3.7
- os: macos-latest
- os: ubuntu-20.04
python-version: 3.8
- os: macos-latest
python-version: "3.10"
- os: macos-latest
python-version: "3.12"
- os: windows-latest
python-version: 3.8
python-version: "3.10"
- os: ubuntu-latest
python-version: "3.10"
- os: ubuntu-latest
Expand Down Expand Up @@ -64,6 +62,13 @@ jobs:
# package setup
- uses: actions/checkout@v4

# only where prebuilt wheels do not exist
# - name: Install LXML dependencies
# if: ${{ matrix.python-version == '3.13-dev' }}
# run: |
# sudo apt-get update
# sudo apt-get install libxml2-dev libxslt-dev

- name: Install dependencies
run: python -m pip install -e "."

Expand Down