Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbaker committed Jan 16, 2024
1 parent b518e49 commit a03fd58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test_and_release.yml
Expand Up @@ -15,8 +15,8 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install --upgrade pip setuptools wheel
# - name: Install dependencies
# run: python -m pip install --upgrade pip setuptools wheel
- name: Run the tests
run: |
python setup.py test
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Expand Up @@ -249,6 +249,7 @@ def import_setuptools_setup():
return setup

setup = import_setuptools_setup()
print("import_setuptools_setup", setup, setup or not attempt_to_install_setuptools)
if setup or not attempt_to_install_setuptools:
return setup
import suds_devel.ez_setup_versioned
Expand All @@ -267,8 +268,10 @@ def import_setuptools_setup():
ez_setup.use_setuptools()
except (KeyboardInterrupt, SystemExit):
raise
except Exception:
except Exception as e:
print("acquire_setuptools_setup ", e)
return
print("import_setuptools_setup 2", import_setuptools_setup())
return import_setuptools_setup()

setup = acquire_setuptools_setup()
Expand Down

0 comments on commit a03fd58

Please sign in to comment.