Skip to content

Commit

Permalink
v21.03: minimal version fix (#1147)
Browse files Browse the repository at this point in the history
* minimal version fix

* docs
  • Loading branch information
Scitator committed Mar 29, 2021
1 parent f7df483 commit 2ff687e
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Expand Up @@ -9,6 +9,7 @@
- [ ] Did you check that your code passes the unit tests `pytest .` ?
- [ ] Did you add your new functionality to the docs?
- [ ] Did you update the [CHANGELOG](https://github.com/catalyst-team/catalyst/blob/master/CHANGELOG.md)?
- [ ] Did you run [colab minimal CI/CD](https://colab.research.google.com/drive/1JCGTVvWlrIsLXMPRRRSWiAstSLic4nbA) with `latest` and `minimal` requirements?

<!-- For CHANGELOG separate each item in unreleased section by blank line to reduce collisions -->

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/intergarions.yml
Expand Up @@ -19,9 +19,9 @@ jobs:
fail-fast: false
max-parallel: 4
matrix:
os: [ubuntu-18.04] # windows-2019,
python-version: [3.7]
requirements: ['latest']
os: [ubuntu-18.04, ubuntu-20.04] # windows-2019,
python-version: [3.6, 3.7, 3.8]
requirements: ['minimal', 'latest']
exclude:
# pypi problems
- python-version: 3.8
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.md
Expand Up @@ -23,13 +23,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

-

## [21.03.2] - 2021-03-29

### Fixed

- minimal requirements issue ([#1147](https://github.com/catalyst-team/catalyst/issues/1147))


## [21.03.1] - 2021-03-28

### Added

- Additive Margin SoftMax(AMSoftmax)([#1125](https://github.com/catalyst-team/catalyst/issues/1125))
- Generalized Mean Pooling(GeM)([#1084](https://github.com/catalyst-team/catalyst/issues/1084))
- Additive Margin SoftMax(AMSoftmax) ([#1125](https://github.com/catalyst-team/catalyst/issues/1125))
- Generalized Mean Pooling(GeM) ([#1084](https://github.com/catalyst-team/catalyst/issues/1084))
- Key-value support for CriterionCallback ([#1130](https://github.com/catalyst-team/catalyst/issues/1130))
- Engine configuration through cmd ([#1134](https://github.com/catalyst-team/catalyst/issues/1134))
- Extra utils for thresholds ([#1134](https://github.com/catalyst-team/catalyst/issues/1134))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -1365,7 +1365,7 @@ best practices for your deep learning research and development.

### Documentation
- [master](https://catalyst-team.github.io/catalyst/)
- [21.03](https://catalyst-team.github.io/catalyst/v21.03/index.html), [21.03.1](https://catalyst-team.github.io/catalyst/v21.03.1/index.html)
- [21.03](https://catalyst-team.github.io/catalyst/v21.03/index.html), [21.03.1/21.03.2](https://catalyst-team.github.io/catalyst/v21.03.1/index.html)
- [20.12](https://catalyst-team.github.io/catalyst/v20.12/index.html)
- [20.11](https://catalyst-team.github.io/catalyst/v20.11/index.html)
- [20.10](https://catalyst-team.github.io/catalyst/v20.10/index.html)
Expand Down
2 changes: 1 addition & 1 deletion catalyst/__version__.py
@@ -1 +1 @@
__version__ = "21.04"
__version__ = "21.03.2"
2 changes: 1 addition & 1 deletion catalyst/callbacks/onnx.py
Expand Up @@ -87,7 +87,7 @@ def __init__(
"""Init."""
super().__init__(order=CallbackOrder.ExternalExtra, node=CallbackNode.Master)
if logdir is not None:
self.filename = Path(logdir) / filename
self.filename = str(Path(logdir) / filename)
else:
self.filename = filename
# self.input_key = [input_key] if isinstance(input_key, str) else input_key
Expand Down
2 changes: 1 addition & 1 deletion catalyst/callbacks/tracing.py
Expand Up @@ -131,7 +131,7 @@ def __init__(
"""
super().__init__(order=CallbackOrder.ExternalExtra, node=CallbackNode.Master)
if logdir is not None:
self.filename = Path(logdir) / filename
self.filename = str(Path(logdir) / filename)
else:
self.filename = filename
self.method_name = method_name
Expand Down
1 change: 1 addition & 0 deletions requirements/requirements-cv.txt
Expand Up @@ -2,3 +2,4 @@ imageio>=2.3.0
opencv-python-headless
scikit-image>=0.14.2
torchvision>=0.4.1
Pillow>=6.1 # torchvision fix (https://github.com/python-pillow/Pillow/issues/4130)

0 comments on commit 2ff687e

Please sign in to comment.