Skip to content

Commit

Permalink
Drop 3.8 support, set 1.16 Windows cffi.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusCZ committed Dec 27, 2023
1 parent 7007ddd commit 296d777
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.8,3.9,3.10.x,3.11.x,3.12.x]
python: [3.9,3.10.x,3.11.x,3.12.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
Expand Down Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.8,3.9,3.10.x,3.11.x,3.12.x]
python: [3.9,3.10.x,3.11.x,3.12.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: macos-latest
strategy:
matrix:
python: [3.8,3.9,3.10.x,3.11.x,3.12.x]
python: [3.9,3.10.x,3.11.x,3.12.x]
steps:
- name: Check out code from GitHub
uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ ledfx = "ledfx.__main__:main"
ledfx-loopback-install = "loopback.__main__:copy_lib"

[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.26"
# Later than 1.15 on Linux fails.
cffi = {version = "<=1.15.0", platform = "linux"}
# Earlier than 1.16 on Windows Python 3.12 fails.
cffi = {version = ">=1.16.0", platform = "win32"}
wheel = ">=0.36.2"
aiohttp = "^3.9.1"
aiohttp-cors = ">=0.7.0"
Expand Down

0 comments on commit 296d777

Please sign in to comment.