Skip to content

Commit

Permalink
Merge branch 'trunk' of http://gitbox.apache.org/repos/asf/libcloud i…
Browse files Browse the repository at this point in the history
…nto trunk
  • Loading branch information
Kami committed Aug 1, 2023
2 parents 56674f4 + 35b411b commit 572c3ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,8 @@ jobs:
tox -e py${{ matrix.python_version }}
- name: Run dist install checks tox target
if: ${{ matrix.python_version != 'pypy-3.7' && matrix.python_version != 'pyjion' }}
# NOTE: 3.12 will be failing until we migrate away from setup.py
if: ${{ matrix.python_version != 'pypy-3.7' && matrix.python_version != 'pyjion' && matrix.python_version != '3.12-dev' }}
run: |
tox -e py${{ matrix.python_version }}-dist,py${{ matrix.python_version }}-dist-wheel
Expand Down
3 changes: 2 additions & 1 deletion scripts/dist_install_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
set -e

# Verify library installs without any dependencies when using python setup.py
# install
Expand All @@ -26,7 +27,7 @@ python --version
pip show requests && exit 1
pip show typing && exit 1
pip show enum34 && exit 1
pip show apache-libcloud
pip show apache-libcloud && exit 1

# Install the library
python setup.py install
Expand Down
3 changes: 2 additions & 1 deletion scripts/dist_wheel_install_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
# under the License.

# Verify library installs without any dependencies when using built wheel
set -e

echo "Running dist wheel install checks"
python --version
Expand All @@ -26,7 +27,7 @@ python --version
pip show requests && exit 1
pip show typing && exit 1
pip show enum34 && exit 1
pip show apache-libcloud
pip show apache-libcloud && exit 1
rm -rf dist/apache_libcloud-*.whl

pip install wheel
Expand Down

0 comments on commit 572c3ff

Please sign in to comment.