Skip to content

Commit

Permalink
Remove setup requires
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhlongviolin1 authored and jrobinAV committed Oct 27, 2023
1 parent 1d57aca commit f6fbc26
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,12 @@ jobs:
python -m pip install --upgrade pip
pip install build wheel
# install taipy-gui from based on setup.py version
pip install "${{ steps.taipy_gui_version.outputs.VERSION }}"
- name: Build and test the package
run: |
python setup.py build_py && python -m build
pwd
ls -l .
rm -rf taipy
ls -l dist/
pip install dist/*.tar.gz
python -c "import taipy as tp; tp.Scenario"
python -c "import taipy as tp; tp.gui"
Expand Down
3 changes: 0 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@
"taipy-templates>=3.0,<3.1",
]

setup_requirements = [(requirement for requirement in requirements if requirement.startswith("taipy-gui"))]

test_requirements = ["pytest>=3.8"]

extras_require = {
Expand Down Expand Up @@ -95,7 +93,6 @@ def run(self):
"Programming Language :: Python :: 3.11",
],
description="A 360° open-source platform from Python pilots to production-ready web apps.",
setup_requires=setup_requirements,
install_requires=requirements,
entry_points={
"console_scripts": [
Expand Down

0 comments on commit f6fbc26

Please sign in to comment.