Skip to content

Commit 74f3dfe

Browse files
authored
Merge branch 'main' into automate-release-process
2 parents e379c9f + 0d0f1e1 commit 74f3dfe

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/build-and-publish-new-version.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Build and publish a new version
22

33
on:
44
workflow_dispatch:
5-
branches: main
65
inputs:
76
tag:
87
description: 'Release Tag. This is in the form x.y.z'

deepview_profile/db/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sqlite3
44

5-
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
5+
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
66
DB_PATH = os.path.join(BASE_DIR, "deepview.sqlite3")
77

88
class DatabaseInterface:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deepview-profile"
3-
version = "0.12.1"
3+
version = "0.12.2"
44
description = "Interactive performance profiling and debugging tool for PyTorch neural networks."
55
authors = ["CentML <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)