File tree Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Expand file tree Collapse file tree 3 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 22
33Observes [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) standard and [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) convention.
44
5+ ## [ 3.0.2] - 06-29-2024
6+
7+ ### Added
8+
9+ - unit tests
10+
11+ ### Changed
12+
13+ - model deletion returns valid JSON on permission error
14+
15+ ### Fixed
16+
17+ - multiple bugs for dataset generation, model creation, and cli
18+
519## [ 3.0.1] - 06-27-2024
620
721### Changed
@@ -81,6 +95,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
8195
8296- switched to ` pathlib ` for file path parsing
8397
98+ [ 3.0.2 ] : https://github.com/A-Baji/discordAI-modelizer/compare/3.0.1...3.0.2
8499[ 3.0.1 ] : https://github.com/A-Baji/discordAI-modelizer/compare/3.0.0...3.0.1
85100[ 3.0.0 ] : https://github.com/A-Baji/discordAI-modelizer/compare/2.0.1...3.0.0
86101[ 2.0.1 ] : https://github.com/A-Baji/discordAI-modelizer/compare/1.2.2...2.0.1
Original file line number Diff line number Diff line change 1- __version__ = "3.0.1 "
1+ __version__ = "3.0.2 "
Original file line number Diff line number Diff line change 33import sys
44import discordai_modelizer as package
55
6- min_py_version = (3 , 8 )
6+ min_py_version = (3 , 9 )
77
88if sys .version_info < min_py_version :
99 sys .exit (
10- "DiscordAI Model Gen is only supported for Python {}.{} or higher" .format (
10+ "DiscordAI Modelizer is only supported for Python {}.{} or higher" .format (
1111 * min_py_version
1212 )
1313 )
2121 version = package .__version__ ,
2222 author = "Adib Baji" ,
232324- description = "A package that utilizes openAI to create custom AI models out of your chat history" ,
24+ description = "A package that utilizes openAI to create custom AI models out of your Discord chat history" ,
2525 long_description = pathlib .Path ("README.md" ).read_text (),
2626 long_description_content_type = "text/markdown" ,
27- url = "https://github.com/A-Baji/discordAI-model-gen " ,
27+ url = "https://github.com/A-Baji/discordAI-modelizer " ,
2828 packages = setuptools .find_packages (exclude = ["tests*" ]),
2929 classifiers = [
3030 "Programming Language :: Python :: 3" ,
You can’t perform that action at this time.
0 commit comments