Skip to content

Commit cc8c612

Browse files
committed
Print the import file locations in CI.
1 parent 6499a07 commit cc8c612

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,11 @@ jobs:
2929
shell: bash -l {0}
3030
run: |
3131
conda info
32-
python -m pip install --no-deps .
32+
python -m pip install --no-deps --no-build-isolation .
3333
conda list
3434
python -c "import pygait2d.segment"
35+
python -c "import pygait2d;print(pygait2d.__file__)"
36+
python -c "import algait2de;print(algait2de.__file__)"
3537
python -c "import algait2de.gait2de"
3638
- name: run tests
3739
shell: bash -l {0}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'sympy',
3535
],
3636
extras_require={
37-
'examples': ['numpy', 'scipy', 'cython'],
37+
'examples': ['numpy', 'scipy', 'cython', 'opty'],
3838
'doc': ['sphinx', 'numpydoc'],
3939
},
4040
tests_require=['pytest'],
@@ -44,10 +44,10 @@
4444
'Development Status :: 4 - Beta',
4545
'Intended Audience :: Science/Research',
4646
'Operating System :: OS Independent',
47-
'Programming Language :: Python :: 3.9',
4847
'Programming Language :: Python :: 3.10',
4948
'Programming Language :: Python :: 3.11',
5049
'Programming Language :: Python :: 3.12',
50+
'Programming Language :: Python :: 3.13',
5151
'Topic :: Scientific/Engineering :: Physics',
5252
],
5353
)

0 commit comments

Comments
 (0)