Skip to content

Commit

Permalink
feat: allows >= Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Oct 17, 2023
1 parent 61bc5a9 commit e7d55ea
Show file tree
Hide file tree
Showing 3 changed files with 817 additions and 680 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ on: push
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.x"]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.x"
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: python -m pip install --upgrade poetry
- name: Install Dependencies
Expand Down

0 comments on commit e7d55ea

Please sign in to comment.