Skip to content

Commit

Permalink
rename package
Browse files Browse the repository at this point in the history
  • Loading branch information
javierluraschi committed Mar 13, 2024
1 parent 814b26b commit 99972eb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/ioflow
url: https://pypi.org/p/iobind
permissions:
id-token: write
steps:
Expand All @@ -27,14 +27,8 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm install
working-directory: ioflow/frontend
- run: npm run build
working-directory: ioflow/frontend
- run: sed -i 's/_RELEASE = False/_RELEASE = True/' __init__.py
working-directory: ioflow
- run: cat __init__.py
working-directory: ioflow
working-directory: iobind
- run: python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
if: steps.changed-files.outputs.any_changed == 'true'
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from setuptools import setup

setup(name='ioflow',
setup(name='iobind',
version='0.1',
description='Define inputs and outputs',
url='http://github.com/hal9ai/ioflow',
url='http://github.com/hal9ai/iobind',
author='Javier Luraschi',
author_email='[email protected]',
license='MIT',
packages=['ioflow'],
packages=['iobind'],
zip_safe=False)

0 comments on commit 99972eb

Please sign in to comment.