Skip to content

Commit

Permalink
Merge pull request #290 from thegridelectric/dev
Browse files Browse the repository at this point in the history
Downgrade pendulum so it can work on 32 bit Raspberry Pis, in particular those with the Arm v7l processor.
  • Loading branch information
anschweitzer committed Apr 23, 2024
2 parents 9bb4d33 + 17a8479 commit 90e89ca
Show file tree
Hide file tree
Showing 4 changed files with 379 additions and 276 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/tests.yml
Expand Up @@ -12,15 +12,16 @@ jobs:
fail-fast: false
matrix:
include:
- { python: "3.12", os: "ubuntu-latest", session: "pre-commit" }
- { python: "3.11", os: "ubuntu-latest", session: "pre-commit" }
# - { python: "3.12", os: "ubuntu-latest", session: "mypy" }
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
- { python: "3.12", os: "ubuntu-latest", session: "tests" }
- { python: "3.12", os: "windows-latest", session: "tests" }
- { python: "3.12", os: "macos-latest", session: "tests" }
- { python: "3.12", os: "ubuntu-latest", session: "xdoctest" }
- { python: "3.12", os: "ubuntu-latest", session: "docs-build" }
# - { python: "3.12", os: "ubuntu-latest", session: "tests" }
# - { python: "3.12", os: "ubuntu-latest", session: "tests" }
- { python: "3.11", os: "windows-latest", session: "tests" }
- { python: "3.11", os: "macos-latest", session: "tests" }
- { python: "3.11", os: "ubuntu-latest", session: "xdoctest" }
- { python: "3.11", os: "ubuntu-latest", session: "docs-build" }
env:
NOXSESSION: ${{ matrix.session }}
FORCE_COLOR: "1"
Expand Down Expand Up @@ -124,7 +125,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.11"

- name: Upgrade pip
run: |
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Expand Up @@ -25,7 +25,7 @@


package = "gwproto"
python_versions = ["3.12", "3.11", "3.10"]
python_versions = ["3.11", "3.10"]

nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
Expand Down

0 comments on commit 90e89ca

Please sign in to comment.