Skip to content

Commit

Permalink
Small Python wrapper updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tliron committed Mar 5, 2023
1 parent 3ab916a commit 2a24a6c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions scripts/build-wrapper-python
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ cd "$DIST"
rsync --recursive "$ROOT/wrappers/python"/* .
rsync "$ROOT/go.mod" "$ROOT/go.sum" puccini/go-source/
if [ -z "$KUTIL" ]; then
echo 'go 1.19
echo 'go 1.20
use .' > puccini/go-source/go.work
else
echo "go 1.19
echo "go 1.20
replace github.com/tliron/kutil => $KUTIL
use ." > puccini/go-source/go.work
fi
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
with open(os.path.join(os.path.dirname(__file__), 'description.md')) as f:
description = f.read()

go_version = os.environ.get('PUCCINI_GO_VERSION', '1.19.4')
go_version = os.environ.get('PUCCINI_GO_VERSION', '1.20.1')
root = os.path.abspath(os.path.dirname(__file__)).replace('"', '\\"')

script = '''\
Expand Down

0 comments on commit 2a24a6c

Please sign in to comment.