Skip to content

Commit 3feb110

Browse files
authored
Set 0.4.0 version for a release (#58)
1 parent f7303d4 commit 3feb110

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/check-code.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ jobs:
2727
pip install mypy types-setuptools # don't use --upgrade to respect the version installed via setup.py
2828
pip list
2929
30-
- uses: ./.github/actions/pip-list
31-
with:
32-
unfold: true
30+
# TODO: re-enable after the external usage is resolved, see #51
31+
# - uses: ./.github/actions/pip-list
32+
# with:
33+
# unfold: true
3334

3435
- name: Check typing
3536
# mypy uses the config file found in the following order:

.github/workflows/check-docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
pip list
4848
shell: bash
4949

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

5253
- name: Test Documentation
5354
working-directory: ${{ inputs.docs-dir }}

.github/workflows/ci-testing.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
pip --version
4545
pip list
4646
47-
- uses: ./.github/actions/pip-list
47+
# TODO: re-enable after the external usage is resolved, see #51
48+
# - uses: ./.github/actions/pip-list
4849

4950
- uses: ./.github/actions/unittesting
5051
with:

.github/workflows/docs-deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ jobs:
3939
pip list
4040
shell: bash
4141

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

4445
- name: Make Documentation
4546
run: |

src/lightning_utilities/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import time
22

3-
__version__ = "0.4.0dev"
3+
__version__ = "0.4.0"
44
__author__ = "Lightning AI et al."
55
__author_email__ = "[email protected]"
66
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)