Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
fix missing extras & extend package check (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Oct 15, 2023
1 parent b5edfda commit 2aed165
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .azure/ipu-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
displayName: "Reset IPU devices"
- bash: |
pip install ".[test,$(dependency)]" -f /mnt/public/packages
pip install ".[$(dependency)]" -r requirements/_test.txt -f /mnt/public/packages
pip uninstall -y neptune-client # todo: it is not clear what version is compatible
pip list
displayName: 'Install package & dependencies'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/ci-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ jobs:
actions-ref: main
import-name: "lightning_graphcore"
artifact-name: dist-packages-${{ github.sha }}
# todo: new veersions shall have input flags whci would de-deuplictae this hidden adjustment
install-flags: '"pytorch-lightning>=2.0.0, <=2.0.6"'
install-extras: "[pytorch-lightning]"
testing-matrix: |
{
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
python-version: 3.9

- name: Install dependencies
run: python -m pip install -U setuptools wheel build
- name: Build
run: pip install -q setuptools wheel build
- name: Build package
run: python -m build

# We do this, since failures on test.pypi aren't that bad
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ exclude docs

# Include the Requirements
include requirements.txt
recursive-include requirements *.txt

# Exclude Makefile
exclude Makefile
Expand Down

0 comments on commit 2aed165

Please sign in to comment.