Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ compile_commands.json
CMakeFiles/
CMakeCache.txt
cmake-build*/
_skbuild/

# Editors/OS
.DS_Store
Expand Down
30 changes: 0 additions & 30 deletions .gitlab-ci.yml

This file was deleted.

2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ services:
target: /workspace/build
- type: volume
target: /workspace/dist
- type: volume
target: /workspace/_skbuild
# Uncomment and adjust the following as needed
# ports:
# - "8888:8888" # Example for Jupyter notebook
Expand Down
2 changes: 1 addition & 1 deletion fvdb/utils/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _is_editable_install() -> bool:
return False
# check if we're in the source directory
module_dir = module_path.parent.parent.parent.parent
return (module_dir / "setup.py").is_file()
return (module_dir / "pyproject.toml").is_file()


def _get_local_repo_path(repo_name: str) -> Path:
Expand Down
38 changes: 0 additions & 38 deletions setup.py

This file was deleted.

4 changes: 2 additions & 2 deletions src/tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
conda activate fvdb
```

2. Build and install fvdb from this README's directory (if not already installed):
2. Build and install fvdb from the repository root (if not already installed):
```bash
pushd ../.. && python setup.py develop && popd
pushd ../.. && ./build.sh && popd
```

3. Build the tests:
Expand Down
Loading