Skip to content

Commit 2764940

Browse files
Add deprecation warning for Python implementation
Added a warning about the deprecation of the Python implementation of Prefix and directed developers to the C implementation.
1 parent d255362 commit 2764940

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
**WARNING:** The Python implementation of Prefix is deprecated. Developers should focus on bringing the [C implementation of Prefix](https://github.com/python-processing-unit/Prefix-C) to full specification compatability.
2+
13
## Installation
24
<code>Invoke-WebRequest -Uri "https://github.com/python-processing-unit/Prefix/archive/refs/heads/main.zip" -OutFile "path\to\download\Prefix.zip"<br>
35
Expand-Archive -Path "path\to\download\Prefix.zip" -DestinationPath "path\to\extract\Prefix"<br>
46
$old = [Environment]::GetEnvironmentVariable('Path','User')<br>
57
if(-not $old.Split(';') -contains 'path\to\extract\Prefix'){ [Environment]::SetEnvironmentVariable('Path',$old + ';path\to\extract\Prefix','User') }<br>
6-
Remove-Item -Path "path\to\download\Prefix.zip"</code>
8+
Remove-Item -Path "path\to\download\Prefix.zip"</code>

0 commit comments

Comments
 (0)