diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 0215cc6..60dc811 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ -ko_fi: paulocoutinho \ No newline at end of file +github: paulocoutinhox +ko_fi: paulocoutinho diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9bd931f..64e2a4e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,16 +22,16 @@ jobs: python-version: ${{ matrix.python-version }} - name: Upgrade PIP - run: python -m pip install --upgrade pip setuptools wheel + run: python3 -m pip install --upgrade pip setuptools wheel - name: Display Python version - run: python --version + run: python3 --version - name: Display PIP version - run: pip --version + run: python3 -m pip --version - name: Install python dependencies - run: pip install -r requirements.txt + run: python3 -m pip install -r requirements.txt - name: Build - run: python kaktos.py build + run: python3 kaktos.py build diff --git a/README.md b/README.md index 9e20111..9b0a041 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,6 @@ Designers can use it too, since it don't need people that know a programming lan Install python dependencies: -```bash -pip3 install -r requirements.txt -``` - -or - ```bash python3 -m pip install -r requirements.txt ```