mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-13 05:48:34 +03:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eed3ee8e1c | ||
|
|
5bb0b6db6b | ||
|
|
1916a7e1a6 | ||
|
|
400829c6ec |
@@ -7,7 +7,6 @@ TUI-based toolkit for GitHub data analysis.
|
|||||||

|

|
||||||

|

|
||||||

|

|
||||||
[](https://github.com/bellingcat/octosuite/actions/workflows/codeql.yml)
|
|
||||||

|

|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "octosuite"
|
name = "octosuite"
|
||||||
version = "4.0.0rc0"
|
version = "4.0.0"
|
||||||
description = "TUI-based toolkit for GitHub data analysis."
|
description = "TUI-based toolkit for GitHub data analysis."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
@@ -16,7 +16,7 @@ dependencies = [
|
|||||||
"black>=25.12.0",
|
"black>=25.12.0",
|
||||||
]
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Intended Audience :: End Users/Desktop",
|
"Intended Audience :: End Users/Desktop",
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
@@ -34,4 +34,4 @@ dev = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
octosuite = "octosuite.app:start"
|
octosuite = "octosuite.app:start"
|
||||||
@@ -1,2 +1,2 @@
|
|||||||
__pkg__ = "octosuite"
|
__pkg__ = "octosuite"
|
||||||
__version__ = "4.0.0rc0"
|
__version__ = "4.0.0"
|
||||||
|
|||||||
@@ -221,7 +221,7 @@ def check_updates():
|
|||||||
result = checker.check(__pkg__, __version__)
|
result = checker.check(__pkg__, __version__)
|
||||||
if result is not None:
|
if result is not None:
|
||||||
status.stop()
|
status.stop()
|
||||||
message_dialog(title="Update Available", text=result).run()
|
message_dialog(title="Update Available", text=str(result)).run()
|
||||||
else:
|
else:
|
||||||
status.stop()
|
status.stop()
|
||||||
message_dialog(
|
message_dialog(
|
||||||
|
|||||||
Reference in New Issue
Block a user