Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v0.1.0 #19

Merged
merged 1 commit into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Release-pypi
name: Release

on:
workflow_dispatch:
push:
tags:
- "v*"

jobs:
Pypi:
Release:
strategy:
matrix:
python-version: ["3.9"]
Expand Down Expand Up @@ -32,3 +35,6 @@ jobs:
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API }}

- name: Release
uses: softprops/action-gh-release@v2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![PyPI version](https://badge.fury.io/py/ccrestoration.svg)](https://badge.fury.io/py/ccrestoration)
![GitHub](https://img.shields.io/github/license/TensoRaws/ccrestoration)

an inference framework for image/video restoration with VapourSynth support, compatible with [many community models](https://openmodeldb.info/)
an inference lib for image/video restoration with VapourSynth support, compatible with [many community models](https://openmodeldb.info/)

### Install

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
description = "an inference framework for image/video restoration with VapourSynth support"
description = "an inference lib for image/video restoration with VapourSynth support"
homepage = "https://github.com/TensoRaws/ccrestoration"
license = "MIT"
name = "ccrestoration"
readme = "README.md"
repository = "https://github.com/TensoRaws/ccrestoration"
version = "0.0.12"
version = "0.1.0"

# Requirements
[tool.poetry.dependencies]
Expand Down
Loading