forcing 3.12 as maximum python version to fix pydub issue
This commit is contained in:
parent
780b905f74
commit
656ab520e7
3 changed files with 3 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -118,5 +118,3 @@ desktop.ini
|
||||||
*.db
|
*.db
|
||||||
*.sqlite3
|
*.sqlite3
|
||||||
|
|
||||||
# Virtual environment
|
|
||||||
.python-version
|
|
||||||
|
|
|
||||||
1
.python-version
Normal file
1
.python-version
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
3.12
|
||||||
|
|
@ -11,7 +11,7 @@ classifiers = [
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"Programming Language :: Python :: 3.11",
|
"Programming Language :: Python :: 3.11",
|
||||||
]
|
]
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11,<3.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"streamlit>=1.39.0",
|
"streamlit>=1.39.0",
|
||||||
"watchdog>=5.0.3",
|
"watchdog>=5.0.3",
|
||||||
|
|
@ -53,7 +53,7 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools]
|
||||||
package-dir = {"jota_ai" = "src/open_notebook"}
|
package-dir = {"open_notebook" = "src/open_notebook"}
|
||||||
|
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue