Skip to content

Commit

Permalink
build: bump conan version to be compatible with python 3.12 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
tibnor authored Jun 3, 2024
1 parent 9dbd814 commit a51be27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
platform: [ 'windows-latest', 'ubuntu-latest' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
timeout-minutes: 35
steps:
- uses: actions/checkout@v3
Expand All @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
platform: [ 'windows-latest', 'ubuntu-latest' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
timeout-minutes: 35
env:
CONAN_REVISIONS_ENABLED: 1
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ maintainers = [
]
description = "Python wrapper for the libcosim library"
readme = "README.md"
requires-python = ">=3.8, <3.12"
requires-python = ">=3.8, <3.13"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux"
Expand All @@ -36,7 +37,7 @@ exclude = ["tests", ".github"]

[tool.hatch.build.targets.wheel.hooks.custom]
dependencies = [
"conan==1.59.0",
"conan==1.64.0",
"patchelf>=0.17.2; platform_system == 'Linux'"
]

Expand Down

0 comments on commit a51be27

Please sign in to comment.