From f6760b52ad5bfe531bc0f6847e78b8264e9a4b89 Mon Sep 17 00:00:00 2001 From: Jirka Date: Tue, 22 Aug 2023 22:14:55 +0200 Subject: [PATCH] rolling next dev & chlog sec. --- .azure/gpu-integrations.yml | 2 +- .azure/gpu-unittests.yml | 2 +- .github/workflows/ci-integrate.yml | 2 +- .github/workflows/ci-readthedocs.yml | 16 -------------- .../{ci-tests-full.yml => ci-tests.yml} | 2 +- CHANGELOG.md | 22 +++++++++++++++++++ README.md | 2 +- src/torchmetrics/__about__.py | 2 +- 8 files changed, 28 insertions(+), 22 deletions(-) delete mode 100644 .github/workflows/ci-readthedocs.yml rename .github/workflows/{ci-tests-full.yml => ci-tests.yml} (99%) diff --git a/.azure/gpu-integrations.yml b/.azure/gpu-integrations.yml index ed7ef3648b7..81d74403204 100644 --- a/.azure/gpu-integrations.yml +++ b/.azure/gpu-integrations.yml @@ -14,7 +14,7 @@ pr: - release/* jobs: - - job: integrate + - job: integrate_GPU strategy: matrix: 'oldest': diff --git a/.azure/gpu-unittests.yml b/.azure/gpu-unittests.yml index 37887d0acca..6b03749936c 100644 --- a/.azure/gpu-unittests.yml +++ b/.azure/gpu-unittests.yml @@ -14,7 +14,7 @@ pr: - release/* jobs: - - job: unitest + - job: unitest_GPU strategy: matrix: 'PyTorch | old': diff --git a/.github/workflows/ci-integrate.yml b/.github/workflows/ci-integrate.yml index ad6d1d4de07..7293fb566eb 100644 --- a/.github/workflows/ci-integrate.yml +++ b/.github/workflows/ci-integrate.yml @@ -1,4 +1,4 @@ -name: CI integrations +name: "CI integrations | CPU" # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows on: # Trigger the workflow on push or pull request, but only for the master branch diff --git a/.github/workflows/ci-readthedocs.yml b/.github/workflows/ci-readthedocs.yml deleted file mode 100644 index 4a6a0503d90..00000000000 --- a/.github/workflows/ci-readthedocs.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: RTFD Preview -on: - pull_request_target: - types: - - opened - -permissions: - pull-requests: write - -jobs: - documentation-links: - runs-on: ubuntu-latest - steps: - - uses: readthedocs/actions/preview@v1 - with: - project-slug: "torchmetrics" diff --git a/.github/workflows/ci-tests-full.yml b/.github/workflows/ci-tests.yml similarity index 99% rename from .github/workflows/ci-tests-full.yml rename to .github/workflows/ci-tests.yml index ca97b47ee5b..caef0208b29 100644 --- a/.github/workflows/ci-tests-full.yml +++ b/.github/workflows/ci-tests.yml @@ -1,4 +1,4 @@ -name: CI testing - complete +name: "CI testing | CPU" # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows on: # Trigger the workflow on push or pull request, but only for the master branch diff --git a/CHANGELOG.md b/CHANGELOG.md index 356aca21769..94a52a9a6fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note: we move fast, but still we preserve 0.1 version (one feature release) back compatibility.** +## [UnReleased] - 2023-MM-DD + +### Added + +- + + +### Changed + +- + + +### Removed + +- + + +### Fixed + +- + + ## [1.1.0] - 2023-08-22 ### Added diff --git a/README.md b/README.md index 63dd5c8de9a..89e2bfd375b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ ______________________________________________________________________ [![Conda](https://img.shields.io/conda/v/conda-forge/torchmetrics?label=conda&color=success)](https://anaconda.org/conda-forge/torchmetrics) [![license](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/Lightning-AI/torchmetrics/blob/master/LICENSE) -[![CI testing - complete](https://github.com/Lightning-AI/torchmetrics/actions/workflows/ci-tests-full.yml/badge.svg?event=push)](https://github.com/Lightning-AI/torchmetrics/actions/workflows/ci-tests-full.yml) +[![CI testing | CPU](https://github.com/Lightning-AI/torchmetrics/actions/workflows/ci-tests.yml/badge.svg?event=push)](https://github.com/Lightning-AI/torchmetrics/actions/workflows/ci-tests.yml) [![Build Status](https://dev.azure.com/Lightning-AI/Metrics/_apis/build/status%2FTM.unittests?branchName=master)](https://dev.azure.com/Lightning-AI/Metrics/_build/latest?definitionId=54&branchName=master) [![codecov](https://codecov.io/gh/Lightning-AI/torchmetrics/branch/master/graph/badge.svg?token=NER6LPI3HS)](https://codecov.io/gh/Lightning-AI/torchmetrics) [![pre-commit.ci status](https://results.pre-commit.ci/badge/github/Lightning-AI/torchmetrics/master.svg)](https://results.pre-commit.ci/latest/github/Lightning-AI/torchmetrics/master) diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index 2115111fa44..5a6617789e8 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.0" +__version__ = "1.2.0.dev" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"