Skip to content

Commit 70652f8

Browse files
Merge pull request #18 from KyberCritter:release-v0.1.14
Release-v0.1.14
2 parents 188f117 + 68b446d commit 70652f8

4 files changed

Lines changed: 8 additions & 17 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ See `/docs/filter_specifications.md` for details on filter implementation.
1212
1. `pip install object_filtering`.
1313
2. Download the latest version of `object_filtering` from the Releases tab on GitHub and install the wheel (`.whl`).
1414

15-
## Making Modifications
15+
## Building From Source
1616

1717
1. Clone this repository.
18-
2. Make modifications to the source code.
19-
3. (Optional) Change the module version in `pyproject.toml`.
20-
4. Run `pytest` from the root of the repository to run unit tests. Only continue if all tests pass.
21-
5. Build the module by running `py -m build` from the root of the repository.
22-
6. Install the newly built wheel file.
18+
2. Install the Python modules `build`, `wheel`, `hatchling`, and `hatch-requirements-txt`.
19+
3. (Optional) Make modifications to the source code.
20+
4. (Optional) Change the module version in `pyproject.toml`.
21+
5. Run `pytest` from the root of the repository to run unit tests. Only continue if all tests pass.
22+
6. Build the module by running `py -m build` from the root of the repository.
2323

2424
## License
2525

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ packages = ["object_filtering"]
77

88
[project]
99
name = "object_filtering"
10-
version = "0.1.13"
10+
version = "0.1.14"
1111
authors = [
1212
{ name="Scott Ratchford", email="object_filtering@scottratchford.com" },
1313
]

requirements.txt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
build>=1.2.1
2-
colorama>=0.4.6
3-
iniconfig>=2.0.0
41
numpy>=2.0.0
5-
packaging>=24.0
6-
pluggy>=1.5.0
7-
pyproject_hooks>=1.1.0
8-
pytest>=8.2.2
9-
setuptools>=71.0.0
10-
wheel>=0.43.0

src/object_filtering/natural_language/natural_language.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#!/usr/bin/env python3
55
import json
66
import sys
7-
from src.object_filtering.object_filtering import (
7+
from ..object_filtering import (
88
ObjectFilter, Rule, GroupExpression, ConditionalExpression,
99
LogicalExpression,
1010
)

0 commit comments

Comments
 (0)