Skip to content

Commit

Permalink
install versioneer
Browse files Browse the repository at this point in the history
install versioneer in right place

try again

copy requirements

copy setup.cfg
  • Loading branch information
zzstoatzz committed Oct 12, 2024
1 parent daa0e3a commit 97f1736
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prefect-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
TMPDIR: ${{ env.TMPDIR }}

- name: Build a binary wheel and a source tarball
run: pip install wheel && python setup.py sdist bdist_wheel
run: pip install versioneer wheel && python setup.py sdist bdist_wheel
working-directory: ${{ env.TMPDIR }}

- name: Install the built client from the locally built package
Expand Down
3 changes: 2 additions & 1 deletion client/build_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ rm -rf server/utilities
cd $TMPDIR
cp $CWD/client/setup.py .
cp $CWD/client/README.md .
cp $CWD/requirements*.txt .
cp $CWD/setup.cfg .

# if running in GH Actions, this happens in external workflow steps
# this is a convenience to simulate the full build locally
Expand All @@ -55,7 +57,6 @@ if [ -z ${CI} ];
uv venv --python 3.12

# Use uv to install dependencies and build the package
uv pip install wheel build
uv build

# Install the built package
Expand Down

0 comments on commit 97f1736

Please sign in to comment.