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

Run Actions in parallel and smaller python version matrix #32

Merged
merged 3 commits into from
Nov 18, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -20,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install .
python -m pip install pytest
python -m pip install pytest pytest-xdist
- name: Test with pytest
run: |
pytest
pytest -n 4
J535D165 marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ We aim to cover the entire API, and we are looking for help. We are welcoming Pu

## Installation

PyAlex requires Python 3.6 or later.
PyAlex requires Python 3.8 or later.

```sh
pip install pyalex
Expand Down
Loading