Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/check-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ jobs:
pip install mypy types-setuptools # don't use --upgrade to respect the version installed via setup.py
pip list

- uses: ./.github/actions/pip-list
with:
unfold: true
# TODO: re-enable after the external usage is resolved, see #51
# - uses: ./.github/actions/pip-list
# with:
# unfold: true

- name: Check typing
# mypy uses the config file found in the following order:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/check-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
pip list
shell: bash

- uses: ./.github/actions/pip-list
# TODO: re-enable after the external usage is resolved, see #51
# - uses: ./.github/actions/pip-list

- name: Test Documentation
working-directory: ${{ inputs.docs-dir }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
pip --version
pip list

- uses: ./.github/actions/pip-list
# TODO: re-enable after the external usage is resolved, see #51
# - uses: ./.github/actions/pip-list

- uses: ./.github/actions/unittesting
with:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/docs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
pip list
shell: bash

- uses: ./.github/actions/pip-list
# TODO: re-enable after the external usage is resolved, see #51
# - uses: ./.github/actions/pip-list

- name: Make Documentation
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/lightning_utilities/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import time

__version__ = "0.4.0dev"
__version__ = "0.4.0"
__author__ = "Lightning AI et al."
__author_email__ = "[email protected]"
__license__ = "Apache-2.0"
Expand Down