Skip to content

Commit

Permalink
chore: Add python-dateutil as a dependency in run-pytest.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
codeperfectplus committed Jun 1, 2024
1 parent 0641437 commit b81601f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run-pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
run: |
sudo apt-get update
sudo apt install libespeak-dev
sudo apt-get install python-dateutil
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
Expand Down
13 changes: 6 additions & 7 deletions docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,22 @@ Installation

To install the library, you can use pip:

```bash
pip install sanatio
```
:code:` pip install sanatio`

Usage
Usage-Examples
=====

```python
.. code:: python
from sanatio import Validator
val = Validator()


# Check if the string is equal to the given value

```python
.. code:: python
val.equals("abc", "abc") # True
```



Expand Down

0 comments on commit b81601f

Please sign in to comment.