Skip to content

Commit

Permalink
remove cython dependency, remove setup.cfg
Browse files Browse the repository at this point in the history
Signed-off-by: James Lamb <[email protected]>
  • Loading branch information
jameslamb committed Dec 23, 2024
1 parent 3260952 commit cca5d08
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 28 deletions.
13 changes: 13 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

[flake8]
exclude = __init__.py, *.egg, build, docs, .git
filename = *.py, *.pyx, *.pxd, *.pxi
ignore =
# whitespace before :
E203,
# do not compare types, for exact checks us 'is' / 'is not'
E721,
# line break before binary operator
W503
max-line-length = 88
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ repos:
rev: 7.1.1
hooks:
- id: flake8
types_or: [python, cython]
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

set(RAPIDS_VERSION "24.10")

cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
cmake_minimum_required(VERSION 3.26.4 FATAL_ERROR)

# ------------- configure rapids-cmake --------------#

Expand Down
2 changes: 0 additions & 2 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ dependencies:
- cupy>=12.0.0
- cupynumeric==25.01.*,>=0.0.0.dev0
- cxx-compiler
- cython>=3.0.3
- gcc_linux-64=11.*
- gitpython
- hypothesis>=6
Expand All @@ -32,7 +31,6 @@ dependencies:
- librmm==24.10.*,>=0.0.0a0
- libucxx
- make
- matplotlib
- mpi4py
- myst-parser>=4.0
- ninja
Expand Down
1 change: 0 additions & 1 deletion conda/recipes/legate-raft/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ requirements:
- libcublas-dev
- python
- pip
- cython >=3.0.3
- rapids-build-backend >=0.3.0,<0.4.0.dev0
- scikit-build-core >=0.10.0
- libraft {{ rapids_version }}
Expand Down
2 changes: 0 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- cmake>=3.26.4,!=3.30.0
- cython>=3.0.3
- ninja
- output_types: [conda]
packages:
Expand Down Expand Up @@ -171,7 +170,6 @@ dependencies:
packages:
- jupyter
- gitpython
- matplotlib
- pandas

checks:
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ dependencies-file = "dependencies.yaml"
matrix-entry = "cuda_suffixed=true"
requires = [
"cmake>=3.26.4,!=3.30.0",
"cython>=3.0.3",
"legate-dataframe==25.01.*,>=0.0.0.dev0",
"legate==25.01.*,>=0.0.0.dev0",
"libraft==24.10.*,>=0.0.0a0",
Expand All @@ -82,3 +81,6 @@ wheel.packages = ["legate_raft"]

[tool.codespell]
ignore-words-list = "coo,indext,thirdparty"

[tool.isort]
profile = "black"
21 changes: 0 additions & 21 deletions setup.cfg

This file was deleted.

0 comments on commit cca5d08

Please sign in to comment.