Skip to content

Commit

Permalink
Merge pull request #21 from paulsengroup/bump-deps
Browse files Browse the repository at this point in the history
Bump dependencies
  • Loading branch information
robomics authored Dec 16, 2023
2 parents 13c468c + aa60e4c commit 1edc5bd
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions conanfile.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand All @@ -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 = [
Expand Down Expand Up @@ -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"

0 comments on commit 1edc5bd

Please sign in to comment.