This repository was archived by the owner on Oct 9, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: Install package
33# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44on : # Trigger the workflow on push or pull request, but only for the master branch
55 push :
6- branches : [ master ]
6+ branches : [master, "release/*" ]
77 pull_request :
8- branches : [master]
8+ branches : [master, "release/*" ]
99
1010jobs :
1111 pkg-check :
Original file line number Diff line number Diff line change 11name : CI notebook
22on :
33 push :
4- branches : [master]
4+ branches : [master, "release/*" ]
55 pull_request :
6- branches : [master]
6+ branches : [master, "release/*" ]
77
88jobs :
99 build :
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ name: CI testing
33# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
44on : # Trigger the workflow on push or pull request, but only for the master branch
55 push :
6- branches : [master]
6+ branches : [master, "release/*" ]
77 pull_request :
8- branches : [master]
8+ branches : [master, "release/*" ]
99
1010jobs :
1111 pytest :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: Check Code formatting
44on : # Trigger the workflow on push or pull request, but only for the master branch
55 push : {}
66 pull_request :
7- branches : [master]
7+ branches : [master, "release/*" ]
88
99jobs :
1010 pep8-check-flake8 :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name: "Check Docs"
44on : # Trigger the workflow on push or pull request, but only for the master branch
55 push : {}
66 pull_request :
7- branches : [master]
7+ branches : [master, "release/*" ]
88
99jobs :
1010 sphinx-docs :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: PyPI Release
33# https://help.github.com/en/actions/reference/events-that-trigger-workflows
44on : # Trigger the workflow on push or pull request, but only for the master branch
55 push :
6- branches : [master]
6+ branches : [master, "release/*" ]
77 release :
88 types : [created]
99
Original file line number Diff line number Diff line change @@ -5,22 +5,17 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ ) .
66
77
8- ## [ 0.2.2] - 2021-MM-DD
9-
10- ### Added
11-
12-
8+ ## [ 0.2.2] - 2021-04-05
139
1410### Changed
1511
1612- Switch to use ` torchmetrics ` ([ #169 ] ( https://github.com/PyTorchLightning/lightning-flash/pull/169 ) )
17-
13+ - Update lightning version to v1.2 ( [ # 133 ] ( https://github.com/PyTorchLightning/lightning-flash/pull/133 ) )
1814
1915### Fixed
2016
2117- Fixed classification softmax ([ #169 ] ( https://github.com/PyTorchLightning/lightning-flash/pull/169 ) )
22-
23- ### Removed
18+ - Don't download data if exists ([ #157 ] ( https://github.com/PyTorchLightning/lightning-flash/pull/157 ) )
2419
2520
2621## [ 0.2.1] - 2021-3-06
Original file line number Diff line number Diff line change 1414"""Root package info."""
1515import os
1616
17- __version__ = "0.2.2rc2 "
17+ __version__ = "0.2.2 "
1818__author__ = "PyTorchLightning et al."
1919__author_email__ = "name@pytorchlightning.ai"
2020__license__ = 'Apache-2.0'
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ numpy # comes with 3rd-party dependency
1313tqdm # comes with 3rd-party dependency
1414rouge-score >= 0.0.4
1515sentencepiece >= 0.1.95
16- lightning-bolts == 0.3.2rc1 # todo: we shall align with proper release
16+ lightning-bolts == 0.3.2
1717filelock # comes with 3rd-party dependency
1818pycocotools >= 2.0.2 ; python_version >= "3.7"
You can’t perform that action at this time.
0 commit comments