Skip to content

Commit

Permalink
Merge pull request #10 from Tony-Y/license
Browse files Browse the repository at this point in the history
Fix a license issue #9
  • Loading branch information
Tony-Y committed Oct 24, 2022
2 parents fcddf0a + 41dc296 commit ed2b7bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/example-plots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -36,7 +36,7 @@ jobs:
run: |
cd artifact
python ../examples/plots/warmup_schedule.py --output png
- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v3
with:
name: artifact_${{ matrix.os }}_${{ matrix.python-version }}
path: artifact
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
license_files = LICENSE
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pytorch-warmup",
version="0.1.0",
version="0.1.1",
author="Takenori Yamamoto",
author_email="yamamoto.takenory@gmail.com",
description="A PyTorch Extension for Learning Rate Warmup",
Expand Down

0 comments on commit ed2b7bd

Please sign in to comment.