Skip to content

Commit a51be27

Browse files
authored
build: bump conan version to be compatible with python 3.12 (#10)
1 parent 9dbd814 commit a51be27

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
platform: [ 'windows-latest', 'ubuntu-latest' ]
14-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
14+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
1515
timeout-minutes: 35
1616
steps:
1717
- uses: actions/checkout@v3
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
platform: [ 'windows-latest', 'ubuntu-latest' ]
35-
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
35+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
3636
timeout-minutes: 35
3737
env:
3838
CONAN_REVISIONS_ENABLED: 1

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ maintainers = [
1313
]
1414
description = "Python wrapper for the libcosim library"
1515
readme = "README.md"
16-
requires-python = ">=3.8, <3.12"
16+
requires-python = ">=3.8, <3.13"
1717
classifiers = [
1818
"Programming Language :: Python :: 3 :: Only",
1919
"Programming Language :: Python :: 3.8",
2020
"Programming Language :: Python :: 3.9",
2121
"Programming Language :: Python :: 3.10",
2222
"Programming Language :: Python :: 3.11",
23+
"Programming Language :: Python :: 3.12",
2324
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
2425
"Operating System :: Microsoft :: Windows",
2526
"Operating System :: POSIX :: Linux"
@@ -36,7 +37,7 @@ exclude = ["tests", ".github"]
3637

3738
[tool.hatch.build.targets.wheel.hooks.custom]
3839
dependencies = [
39-
"conan==1.59.0",
40+
"conan==1.64.0",
4041
"patchelf>=0.17.2; platform_system == 'Linux'"
4142
]
4243

0 commit comments

Comments
 (0)