Fix build

This commit is contained in:
Sean Whalen
2022-09-09 17:50:51 -04:00
parent 1e0fa9472c
commit 26f43b3315
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
. venv/bin/activate
pip3 install -U -r requirements.txt && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && python3 tests.py && rm -rf dist/ build/ && python3 setup.py sdist && python3 setup.py bdist_wheel
pip3 install -U -r requirements.txt && cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ && cd .. && flake8 parsedmarc && flake8 tests.py && python3 tests.py && rm -rf dist/ build/ && hatch build

View File

@@ -12,7 +12,7 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath(os.path.join("..", "..")))
sys.path.insert(0, os.path.abspath(os.path.join("..")))
from parsedmarc import __version__