Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
paths:
- .github/workflows/typecheck.yml
- quaddtype/numpy_quaddtype/**
- quaddtype/src/numpy_quaddtype/**
- quaddtype/meson.build
- quaddtype/pyproject.toml
workflow_dispatch:
Expand Down
76 changes: 38 additions & 38 deletions quaddtype/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -155,53 +155,53 @@ build_includes = include_directories('.') # compile time generated headers as pe
includes = include_directories(
[
incdir_numpy,
'numpy_quaddtype/src',
'src/csrc',
]
)
pythoncapi_includes = pythoncapi_compat_inc

srcs = [
'numpy_quaddtype/src/quad_common.h',
'numpy_quaddtype/src/casts.h',
'numpy_quaddtype/src/casts.cpp',
'numpy_quaddtype/src/scalar.h',
'numpy_quaddtype/src/scalar.c',
'numpy_quaddtype/src/dtype.h',
'numpy_quaddtype/src/dtype.c',
'numpy_quaddtype/src/quaddtype_main.c',
'numpy_quaddtype/src/scalar_ops.h',
'numpy_quaddtype/src/scalar_ops.cpp',
'numpy_quaddtype/src/ops.hpp',
'numpy_quaddtype/src/dragon4.h',
'numpy_quaddtype/src/dragon4.c',
'numpy_quaddtype/src/quadblas_interface.h',
'numpy_quaddtype/src/quadblas_interface.cpp',
'numpy_quaddtype/src/umath/umath.h',
'numpy_quaddtype/src/umath/umath.cpp',
'numpy_quaddtype/src/umath/binary_ops.h',
'numpy_quaddtype/src/umath/binary_ops.cpp',
'numpy_quaddtype/src/umath/unary_ops.h',
'numpy_quaddtype/src/umath/unary_ops.cpp',
'numpy_quaddtype/src/umath/unary_props.h',
'numpy_quaddtype/src/umath/unary_props.cpp',
'numpy_quaddtype/src/umath/comparison_ops.h',
'numpy_quaddtype/src/umath/comparison_ops.cpp',
'numpy_quaddtype/src/umath/promoters.hpp',
'numpy_quaddtype/src/umath/matmul.h',
'numpy_quaddtype/src/umath/matmul.cpp',
'numpy_quaddtype/src/constants.hpp',
'numpy_quaddtype/src/lock.h',
'numpy_quaddtype/src/lock.c',
'numpy_quaddtype/src/utilities.h',
'numpy_quaddtype/src/utilities.c',
'src/csrc/quad_common.h',
'src/csrc/casts.h',
'src/csrc/casts.cpp',
'src/csrc/scalar.h',
'src/csrc/scalar.c',
'src/csrc/dtype.h',
'src/csrc/dtype.c',
'src/csrc/quaddtype_main.c',
'src/csrc/scalar_ops.h',
'src/csrc/scalar_ops.cpp',
'src/csrc/ops.hpp',
'src/csrc/dragon4.h',
'src/csrc/dragon4.c',
'src/csrc/quadblas_interface.h',
'src/csrc/quadblas_interface.cpp',
'src/csrc/umath/umath.h',
'src/csrc/umath/umath.cpp',
'src/csrc/umath/binary_ops.h',
'src/csrc/umath/binary_ops.cpp',
'src/csrc/umath/unary_ops.h',
'src/csrc/umath/unary_ops.cpp',
'src/csrc/umath/unary_props.h',
'src/csrc/umath/unary_props.cpp',
'src/csrc/umath/comparison_ops.h',
'src/csrc/umath/comparison_ops.cpp',
'src/csrc/umath/promoters.hpp',
'src/csrc/umath/matmul.h',
'src/csrc/umath/matmul.cpp',
'src/csrc/constants.hpp',
'src/csrc/lock.h',
'src/csrc/lock.c',
'src/csrc/utilities.h',
'src/csrc/utilities.c',
]

py.install_sources(
[
'numpy_quaddtype/__init__.py',
'numpy_quaddtype/__init__.pyi',
'numpy_quaddtype/_quaddtype_main.pyi',
'numpy_quaddtype/py.typed',
'src/numpy_quaddtype/__init__.py',
'src/numpy_quaddtype/__init__.pyi',
'src/numpy_quaddtype/_quaddtype_main.pyi',
'src/numpy_quaddtype/py.typed',
],
subdir: 'numpy_quaddtype',
pure: false
Expand Down
4 changes: 2 additions & 2 deletions quaddtype/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Documentation = "https://github.com/numpy/numpy-user-dtypes/tree/main/quaddtype"
Issues = "https://github.com/numpy/numpy-user-dtypes/issues"

[tool.pyright]
include = ["numpy_quaddtype/*.pyi"]
include = ["src/numpy_quaddtype/*.pyi"]
typeCheckingMode = "strict"
enableTypeIgnoreComments = false
reportImplicitOverride = true
Expand All @@ -58,7 +58,7 @@ reportUnnecessaryTypeIgnoreComment = true
[tool.mypy]
strict = true
strict_equality_for_none = true
exclude = ["build", "numpy_quaddtype/src", "subprojects", "tests"]
exclude = ["build", "src/csrc", "subprojects", "tests"]
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"]
warn_unreachable = false

Expand Down
101 changes: 0 additions & 101 deletions quaddtype/release_tracker.md

This file was deleted.

10 changes: 0 additions & 10 deletions quaddtype/sdist_test.sh

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.