Skip to content

Commit 61935e8

Browse files
committed
Revert to python 3.7
1 parent 9ef4c9e commit 61935e8

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.python-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.7

readme.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Autotrace [1] for python.
44
Intended use is centerline tracing of raster images to paths.
55

6-
Note: Originally created with Python 3.7.10; Updated for Python 3.12 and Ubuntu 24.04.
6+
Note: Created with Python 3.7.10; Updated for Ubuntu 24.04.
77

88
Usage:
99
```

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
numpy==1.26.4
2-
pillow==10.3.0
1+
numpy==1.20.2
2+
Pillow==8.2.0

test-pkg.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
python3 setup.py install
1+
try:
2+
from autotrace import autotrace
3+
print("Successfully loaded autotrace")
4+
except Exception as e:
5+
print("Error loading autotrace:")
6+
print(e)

0 commit comments

Comments
 (0)