0.3.0
You can now use expression to define partial dependencies like:
```python
x_squared = R("x") ** 2
x_squared_equals_four = x_squared == 4
Requires(x_squared_equals_four, "y") # when x^2 == 4, y is required
```
You can now use expression to define partial dependencies like:
```python
x_squared = R("x") ** 2
x_squared_equals_four = x_squared == 4
Requires(x_squared_equals_four, "y") # when x^2 == 4, y is required
```