-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build.zig: enable headerpad_max_install_names on MacOs Fixes error during packing on MacOS with Homebrew: Error: Failed changing dylib ID of /usr/local/Cellar/fastfec/0.1.9/lib/libfastfec.dylib from @rpath/libfastfec.dylib to /usr/local/opt/fastfec/lib/libfastfec.dylib Error: Failed to fix install linkage and Error: Failed changing install name in /opt/homebrew/Cellar/fastfec/0.1.9/bin/fastfec from /opt/homebrew/opt/pcre/lib/libpcre.1.dylib to @@HOMEBREW_PREFIX@@/opt/pcre/lib/libpcre.1.dylib See ziglang/zig#13388, where this is inspired from * Updated for changes to zig build system in version 11 * add back preferred optimize mode * change wasm os target to freestanding to fix missing main symbol error * feat: update zig version in github actions workflows * chore: remove jira ticket from template * chore: std=gnu99 * chore: unistd for isatty * chore: include unistd always * chore: pin python version, update wheel * chore: attempt to fix python wheel * chore: remove reproducible wheel * chore: os-specific python setup * chore: log lib * chore: blanket ls * chore: zig cache ls * chore: add verbosity * fix: update zig in requirements-dev * chore: zig 0.11.0 everywhere else * chore: revert setup change * chore: remove test cmds from workflow * chore: 3.11 --------- Co-authored-by: Michka Popoff <[email protected]> Co-authored-by: James Christensen <[email protected]>
- Loading branch information
1 parent
18d32eb
commit 89e1fd6
Showing
15 changed files
with
82 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,8 @@ __pycache__ | |
*.so | ||
*.dylib | ||
*.dll | ||
*.lib | ||
*.pdb | ||
|
||
# Distribution / packaging | ||
.Python | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.9 | ||
0.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ | |
requires = [ | ||
"setuptools", | ||
"wheel", | ||
"ziglang==0.9.1" | ||
"ziglang==0.11.0" | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,5 @@ pytest-xdist | |
pytest-mock | ||
black | ||
isort | ||
ziglang==0.9.1 | ||
ziglang==0.11.0 | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist=py{3} | ||
envlist=py{3.11} | ||
skipsdist=True | ||
|
||
[base] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
#include "encoding.h" | ||
#include "fec.h" | ||
#include "cli.h" | ||
#include <unistd.h> | ||
|
||
#define BUFFERSIZE 65536 | ||
|
||
|