-
-
Notifications
You must be signed in to change notification settings - Fork 4
52 lines (52 loc) · 1.41 KB
/
pip_install_on_python_3_x.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: pip_install_on_py3_x
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
pip_install_on_py3_x:
strategy:
fail-fast: false
matrix:
module:
#- PyWavelets
#- git+https://github.com/PyWavelets/pywt.git
#- scikit-image
#- scikit-fuzzy
#- symengine
#- qiskit
#- git+https://github.com/Qiskit/qiskit.git
- tensorflow
# - git+https://github.com/tensorflow/tensorflow.git
# - django-haystack
# - pysolr
- pyproject_api
- celery
- greenlet
# - django-celery-beat
- pyproject_hooks
# - cssbeautifier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.13
allow-prereleases: true
#- run: pip install ${{ matrix.module }}
#- run: pip uninstall -y ${{ matrix.module }}
- run: pip install --upgrade pip
- run: pip install ${{ matrix.module }}
#- if: ${{ matrix.module }} == 'django-haystack'
# shell: python
# run: |
# import django
# print(django.__version__)
# import haystack
# print(haystack.__version__)
#- if: ${{ matrix.module }} == 'pysolr'
# shell: python
# run: |
# import pysolr
# print(pysolr.__version__)