Skip to content

Commit

Permalink
Merge pull request #14 from Cosmian/update-deps
Browse files Browse the repository at this point in the history
Update deps
  • Loading branch information
grydz authored Nov 15, 2024
2 parents b1b2b7b + 5e53ed1 commit 8635209
Show file tree
Hide file tree
Showing 10 changed files with 175 additions and 246 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-13]
os: [ubuntu-20.04, ubuntu-22.04, macos-13]
target: [x86_64]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

release:
needs: python
Expand All @@ -33,9 +33,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-13]
os: [ubuntu-20.04, ubuntu-22.04, macos-13]
target: [x86_64]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
permissions:
contents: read
id-token: write
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Lint check with pylint
run: |
python -m pylint $PYTHON_SRC
python -m pylint --ignore-patterns=".*.pyi" $PYTHON_SRC
- name: Lint check with pycodestyle
run: |
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "intel-sgx-ra"
version = "2.2.1"
version = "2.3.0"
description = "Intel SGX Remote Attestation verification library"
authors = [
{name = "Cosmian Tech", email = "[email protected]"},
Expand All @@ -20,20 +20,20 @@ classifiers = [
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0,<3.0.0",
"cryptography>=42.0.5,<43.0.0",
"authlib>=1.3.0,<2.0.0"
"requests>=2.32.3,<3.0.0",
"cryptography>=43.0.3,<44.0.0",
"authlib>=1.3.2,<2.0.0"
]

[project.optional-dependencies]
tests = [
dev = [
"black>=24.3.0,<25.0.0",
"isort>=5.13.2,<6.0.0",
"pylint>=3.1.0,<4.0.0",
"pycodestyle>=2.11.1,<3.0.0",
"pylint>=3.2.7,<4.0.0",
"pycodestyle>=2.12.1,<3.0.0",
"pydocstyle>=6.3.0,<7.0.0",
"mypy>=1.9.0,<2.0.0",
"pytest>=8.1.1,<9.0.0",
"mypy>=1.13.0,<2.0.0",
"pytest>=8.3.3,<9.0.0",
"types-requests>=2.31.0,<3.0.0"
]

Expand Down
Loading

0 comments on commit 8635209

Please sign in to comment.