Skip to content

Commit

Permalink
Merge pull request #544 from LedgerHQ/fbe/remove_python_3.8_from_CI
Browse files Browse the repository at this point in the history
Remove python 3.8 from test CI
  • Loading branch information
lpascal-ledger authored Jan 27, 2025
2 parents bd67da9 + 7dce86a commit 14ab1aa
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,6 @@ jobs:
build:
name: Clone, build, test
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11']
# Use https://ghcr.io/ledgerhq/speculos-builder which has all the required
# dependencies
container:
Expand All @@ -59,11 +56,6 @@ jobs:
with:
fetch-depth: 0

- name: Setup Python version
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}

- name: Build and install package
run: |
cmake -Bbuild -H. -DPRECOMPILED_DEPENDENCIES_DIR=/install -DWITH_VNC=1
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,13 @@ authors = [{name = "Ledger", email = "[email protected]"}]
description = "Ledger Blue, Stax, Flex and Nano S/S+/X application emulator"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
"construct>=2.10.56,<3.0.0",
"flask>=2.0.0,<3.0.0",
Expand Down

0 comments on commit 14ab1aa

Please sign in to comment.