Metal3d commited on
Commit
83d24cf
·
1 Parent(s): c79bc81

Try python 3.12

Browse files

It seems that the problem was pytorch version... Trying this.

Files changed (2) hide show
  1. README.md +1 -1
  2. pyproject.toml +9 -4
README.md CHANGED
@@ -8,7 +8,7 @@ sdk_version: 6.0.2
8
  app_file: app.py
9
  pinned: false
10
  license: mit
11
- python_version: "3.9"
12
  ---
13
 
14
  # 🖼️ Labelizer - AI Image Labeling Tool
 
8
  app_file: app.py
9
  pinned: false
10
  license: mit
11
+ python_version: "3.12"
12
  ---
13
 
14
  # 🖼️ Labelizer - AI Image Labeling Tool
pyproject.toml CHANGED
@@ -2,13 +2,18 @@
2
  name = "labelm2"
3
  version = "0.1.0"
4
  description = "Default template for PDM package"
5
- authors = [
6
- {name = "Patrice Ferlet", email = "metal3d@gmail.com"},
 
 
 
 
 
 
7
  ]
8
- dependencies = ["gradio>=6.0.2", "torch>=2.9.1", "transformers>=4.57.3", "pillow>=12.0.0", "spaces>=0.44.0", "networkx>=3.0,<3.6"]
9
  requires-python = ">=3.10,<3.13"
10
  readme = "README.md"
11
- license = {text = "MIT"}
12
 
13
 
14
  [tool.pdm]
 
2
  name = "labelm2"
3
  version = "0.1.0"
4
  description = "Default template for PDM package"
5
+ authors = [{ name = "Patrice Ferlet", email = "metal3d@gmail.com" }]
6
+ dependencies = [
7
+ "gradio>=6.0.2",
8
+ "torch>=2.9.1",
9
+ "transformers>=4.57.3",
10
+ "pillow>=12.0.0",
11
+ "spaces>=0.44.0",
12
+ "networkx>=3.0,<3.6",
13
  ]
 
14
  requires-python = ">=3.10,<3.13"
15
  readme = "README.md"
16
+ license = { text = "MIT" }
17
 
18
 
19
  [tool.pdm]