Skip to content

Commit

Permalink
Merge pull request #292 from RWTH-EBC/291-dependencies-single-source-…
Browse files Browse the repository at this point in the history
…of-truth

chore: delete requirements.txt and put in .gitignore
  • Loading branch information
djs0109 authored Jul 8, 2024
2 parents d9cad8c + 9639d27 commit 7919664
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 28 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ __pycache__
dist
*.pypirc
build
requirements.txt

# PyCharm #
#####################
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ on this.
If this is not an option for you, FIWARE also provides a testing server.
You can register for a testing account
[here](https://www.fiware.org/developers/fiware-lab/).
> **Note**: FiLiP is now compatible to [Pydantic V2](https://docs.pydantic.dev/latest/migration/). If your program still require Pydantic V1.x for some reason, please use release [v0.2.5](https://github.com/RWTH-EBC/FiLiP/releases/tag/v0.2.5) or earlier version of FiLiP. Besides, we recommended to use `pydantic~=1.10` in the `requirements.txt`
> **Note**: FiLiP is now compatible to [Pydantic V2](https://docs.pydantic.dev/latest/migration/). If your program still require Pydantic V1.x for some reason, please use release [v0.2.5](https://github.com/RWTH-EBC/FiLiP/releases/tag/v0.2.5) or earlier version of FiLiP. Besides, we recommended to set `pydantic~=1.10` in the `requirements.txt`, otherwise Pydantic V2 might still be installed.
### Installation

Expand All @@ -83,6 +83,11 @@ If you want to benefit from the latest changes, use the following command
pip install -U git+git://github.com/RWTH-EBC/filip
```

> **Note**: For local development, you can install the library in editable mode with the following command:
> ````
> pip install -e .
> ````
#### Install semantics module (optional)
If you want to use the optional [semantics module](filip/semantics), use the following command (This will install the libraries that only required for the semantics module):
Expand Down
27 changes: 0 additions & 27 deletions requirements.txt

This file was deleted.

0 comments on commit 7919664

Please sign in to comment.