Skip to content

Commit 1edc5bd

Browse files
authored
Merge pull request #21 from paulsengroup/bump-deps
Bump dependencies
2 parents 13c468c + aa60e4c commit 1edc5bd

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
fail-fast: false
5151
matrix:
5252
platform: [windows-latest, macos-latest, ubuntu-latest]
53-
python-version: ["3.7", "3.11"]
53+
python-version: ["3.7", "3.11"] #, 3.12
5454

5555
runs-on: ${{ matrix.platform }}
5656

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
strategy:
105105
fail-fast: false
106106
matrix:
107-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
107+
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
108108

109109
steps:
110110
- uses: actions/checkout@v4
@@ -169,7 +169,7 @@ jobs:
169169
strategy:
170170
fail-fast: false
171171
matrix:
172-
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
172+
python-version: [ '3.8', '3.9', '3.10', '3.11' ] #, '3.12' ]
173173

174174
steps:
175175
- uses: actions/checkout@v4

conanfile.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
# SPDX-License-Identifier: MIT
44

55
[requires]
6-
bshoshany-thread-pool/3.5.0#3c9fd1e21a688432b7f31b40d2d168ee
7-
fast_float/5.2.0#9bf1a3fac625789f2b571d43efb8013b
8-
fmt/10.1.0#1fae165cded07416f64960a5b6140317
9-
hdf5/1.14.1#16047e4faf70ba5488d7525063c5cb2b
10-
highfive/2.7.1#b1e846aa63f7b3ab0368faae2f004fbd
6+
bshoshany-thread-pool/3.5.0#5aaea7ccf37107d3c1ba9ca9ab246e42
7+
fast_float/5.3.0#efd9bda97d5f77fa5a98981e014092a0
8+
fmt/10.1.1#cd63809a79574a2f9eb73ca35f16a243
9+
hdf5/1.14.2#1e12ccecd5ebc9b5191433862e196743
10+
highfive/2.8.0#19e1a6e78d9329851aa9da409f07d29a
1111
libdeflate/1.19#3ea74a4549efc14d4b1202dc4bfbf602
12-
parallel-hashmap/1.3.11#719aed501c271a34e2347a7731ab3bfb
13-
pybind11/2.10.4#dd44c80a5ed6a2ef11194380daae1248
12+
parallel-hashmap/1.3.11#1e67f4855a3f7cdeb977cc472113baf7
13+
pybind11/2.11.1#e24cefefdb5561ba8d8bc34ab5ba1607
1414
span-lite/0.10.3#1967d71abb32b314387c2ab9c558dd22
15-
spdlog/1.12.0#248c215bc5f0718402fbf1de126ef847
15+
spdlog/1.12.0#0e390a2f5c3e96671d0857bc734e4731
1616
xxhash/0.8.2#03fd1c9a839b3f9cdf5ea9742c312187
17-
zstd/1.5.5#93372fe14bb7883bd4de82914e0a1841
17+
zstd/1.5.5#b87dc3b185caa4b122979ac4ae8ef7e8
1818

1919
[generators]
2020
CMakeDeps

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ write_to = "src/_version.py"
1818

1919
[tool.mypy]
2020
files = "setup.py"
21-
python_version = "3.6"
21+
python_version = "3.7"
2222
strict = true
2323
show_error_codes = true
2424
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
@@ -30,7 +30,7 @@ ignore_missing_imports = true
3030

3131

3232
[tool.pytest.ini_options]
33-
minversion = "6.0"
33+
minversion = "7.0"
3434
addopts = ["-ra", "--showlocals", "--strict-markers", "--strict-config"]
3535
xfail_strict = true
3636
filterwarnings = [
@@ -73,11 +73,11 @@ extend-select = [
7373
extend-ignore = [
7474
"E501", # Line too long
7575
]
76-
target-version = "py36"
76+
target-version = "py37"
7777

7878
[tool.black]
7979
line-length = 120
80-
target-version = ["py36"]
80+
target-version = ["py37"]
8181

8282
[tool.isort]
8383
profile = "black"

0 commit comments

Comments
 (0)