Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 26fd5f7

Browse files
author
Christopher Ariza
committed
updated requirements, ci
1 parent 9af0392 commit 26fd5f7

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
- run: echo '::add-matcher::.github/problem-matchers/msvc.json'
6464
if: startsWith(matrix.os, 'windows-')
6565

66-
- uses: pypa/cibuildwheel@v2.16.2
66+
- uses: pypa/cibuildwheel@v2.18.0
6767
if: matrix.os != 'macos-13-xlarge'
6868
with:
6969
output-dir: dist
@@ -77,7 +77,7 @@ jobs:
7777

7878
- run: pip install pipx
7979
if: matrix.os == 'macos-13-xlarge'
80-
- uses: pypa/cibuildwheel@v2.16.2
80+
- uses: pypa/cibuildwheel@v2.18.0
8181
if: matrix.os == 'macos-13-xlarge'
8282
with:
8383
output-dir: dist

requirements-dev-3_08.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
black==22.3.0
22
hypothesis==6.70.0
3-
invoke==1.7.1
3+
invoke==2.2.0
44
pytest==7.1.2
55
tzdata==2022.1
66
numpy==1.19.5

requirements-dev-3_11.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
black==22.3.0
22
hypothesis==6.70.0
3-
invoke==1.7.1
3+
invoke==2.2.0
44
pytest==7.1.2
55
tzdata==2022.1
66
numpy==1.23.5

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
with open("README.rst") as file:
1010
LONG_DESCRIPTION = file.read()
1111

12+
1213
def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
1314
dirs = []
1415
for sp in site.getsitepackages():
@@ -17,6 +18,7 @@ def get_ext_dir(*components: tp.Iterable[str]) -> tp.Sequence[str]:
1718
dirs.append(fp)
1819
return dirs
1920

21+
2022
extension = setuptools.Extension(
2123
"arraymap",
2224
["arraymap.c"],

0 commit comments

Comments
 (0)