diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index f821caf..e41a52e 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -50,7 +50,7 @@ jobs: fail-fast: false matrix: platform: [windows-latest, macos-latest, ubuntu-latest] - python-version: ["3.7", "3.11"] + python-version: ["3.7", "3.11"] #, 3.12 runs-on: ${{ matrix.platform }} diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 7020b79..59dcf03 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -104,7 +104,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ] steps: - uses: actions/checkout@v4 @@ -169,7 +169,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python-version: [ '3.8', '3.9', '3.10', '3.11' ] #, '3.12' ] steps: - uses: actions/checkout@v4 diff --git a/conanfile.txt b/conanfile.txt index b4616f6..3bea10b 100644 --- a/conanfile.txt +++ b/conanfile.txt @@ -3,18 +3,18 @@ # SPDX-License-Identifier: MIT [requires] -bshoshany-thread-pool/3.5.0#3c9fd1e21a688432b7f31b40d2d168ee -fast_float/5.2.0#9bf1a3fac625789f2b571d43efb8013b -fmt/10.1.0#1fae165cded07416f64960a5b6140317 -hdf5/1.14.1#16047e4faf70ba5488d7525063c5cb2b -highfive/2.7.1#b1e846aa63f7b3ab0368faae2f004fbd +bshoshany-thread-pool/3.5.0#5aaea7ccf37107d3c1ba9ca9ab246e42 +fast_float/5.3.0#efd9bda97d5f77fa5a98981e014092a0 +fmt/10.1.1#cd63809a79574a2f9eb73ca35f16a243 +hdf5/1.14.2#1e12ccecd5ebc9b5191433862e196743 +highfive/2.8.0#19e1a6e78d9329851aa9da409f07d29a libdeflate/1.19#3ea74a4549efc14d4b1202dc4bfbf602 -parallel-hashmap/1.3.11#719aed501c271a34e2347a7731ab3bfb -pybind11/2.10.4#dd44c80a5ed6a2ef11194380daae1248 +parallel-hashmap/1.3.11#1e67f4855a3f7cdeb977cc472113baf7 +pybind11/2.11.1#e24cefefdb5561ba8d8bc34ab5ba1607 span-lite/0.10.3#1967d71abb32b314387c2ab9c558dd22 -spdlog/1.12.0#248c215bc5f0718402fbf1de126ef847 +spdlog/1.12.0#0e390a2f5c3e96671d0857bc734e4731 xxhash/0.8.2#03fd1c9a839b3f9cdf5ea9742c312187 -zstd/1.5.5#93372fe14bb7883bd4de82914e0a1841 +zstd/1.5.5#b87dc3b185caa4b122979ac4ae8ef7e8 [generators] CMakeDeps diff --git a/pyproject.toml b/pyproject.toml index 8ad546f..3753f7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ write_to = "src/_version.py" [tool.mypy] files = "setup.py" -python_version = "3.6" +python_version = "3.7" strict = true show_error_codes = true enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"] @@ -30,7 +30,7 @@ ignore_missing_imports = true [tool.pytest.ini_options] -minversion = "6.0" +minversion = "7.0" addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"] xfail_strict = true filterwarnings = [ @@ -73,11 +73,11 @@ extend-select = [ extend-ignore = [ "E501", # Line too long ] -target-version = "py36" +target-version = "py37" [tool.black] line-length = 120 -target-version = ["py36"] +target-version = ["py37"] [tool.isort] profile = "black"