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: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -202,3 +202,4 @@ notebooks/

**/.claude/settings.local.json
config.yaml
Makefile.local
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-${TARGETARCH}
ENV PATH="${JAVA_HOME}/bin:${PATH}"

# Install pyspark extra
RUN pip install --no-cache-dir 'pyspark>=4.0.1,<5.0.0'
RUN pip install --no-cache-dir 'pyspark>=4.0.1,<4.1.0'

# Download Spark JARs for S3 + Avro support (avoids ~40s Maven download at runtime)
RUN mkdir -p /opt/spark-jars && \
Expand Down
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,7 @@ clean-images:

.PHONY: clean
clean: clean-workdir clean-images
@echo "✅ Full cleanup complete!"
@echo "✅ Full cleanup complete!"

# Include local overrides (not committed to git)
-include Makefile.local
2 changes: 1 addition & 1 deletion plexe/CODE_INDEX.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Index: plexe

> Generated on 2026-02-08 21:45:49
> Generated on 2026-02-09 15:35:33

Code structure and public interface documentation for the **plexe** package.

Expand Down
2 changes: 1 addition & 1 deletion plexe/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ def setup_logging(config: Config) -> logging.Logger:
Configured package logger
"""
# Get package root logger
package_logger = logging.getLogger("source")
package_logger = logging.getLogger("plexe")
package_logger.setLevel(getattr(logging, config.log_level.upper()))

# Clear existing handlers to avoid duplicates
Expand Down
15 changes: 7 additions & 8 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "plexe"
version = "1.0.0"
version = "1.0.1"
description = "An agentic framework for building ML models from natural language"
authors = [
"Marcello De Bernardi <mdebernardi@plexe.ai>",
Expand Down Expand Up @@ -66,7 +66,7 @@ pydantic = ">=2.7.4,<3.0.0"
pydantic-settings = ">=2.0.0,<3.0.0"

# Optional dependencies
pyspark = { version = ">=4.0.1,<5.0.0", optional = true }
pyspark = { version = ">=4.0.1,<4.1.0", optional = true }
databricks-connect = { version = ">=17.3.1,<18.0.0", python = "3.12", optional = true }
boto3 = { version = ">=1.35.0,<2.0.0", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion tests/CODE_INDEX.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Code Index: tests

> Generated on 2026-02-08 21:45:49
> Generated on 2026-02-09 15:35:33

Test suite structure and test case documentation.

Expand Down