Skip to content

Commit

Permalink
Remove make requirements (#2481)
Browse files Browse the repository at this point in the history
* remove reqs target from makefile

* remove reqs from workflows
  • Loading branch information
purva-thakre authored Aug 23, 2024
1 parent af886ee commit 483ec92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
make install requirements
make install
- name: Check types with mypy
run: make check-types
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
make install requirements
make install
- name: Run the quilc & qvm Docker images
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
make install requirements
make install
pip install setuptools wheel twine
- name: Build and publish
env:
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ install-hooks:
@chmod +x .git-hooks/*
@echo "Git hooks installed."

.PHONY: requirements
requirements: requirements/requirements.txt
pip install -r requirements/requirements.txt

.PHONY: test
test:
pytest -n auto -v --cov=mitiq --cov-report=term --cov-report=xml --ignore=mitiq/interface/mitiq_pyquil
Expand Down

0 comments on commit 483ec92

Please sign in to comment.