diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae73c3f..d5dc9da 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,6 +45,7 @@ jobs: python -m pip install --upgrade pip python -m pip install -r requirements.txt python -m pip install pytest pytest-cov + python -m pip install --use-pep517 . # Run pytest - name: ❯ Run pytest 🧪 diff --git a/setup.py b/setup.py index 3a35884..3ca19f3 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ }, entry_points={ "console_scripts": [ - "pain001=pain001.cli:cli:main", + "pain001=pain001.cli:main", ], }, python_requires=">=3.9,<3.13",