File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2525 run : |
2626 python -m pip install --upgrade pip
2727 pip install -r requirements.txt
28- - name : Install
28+ - name : install with pip -e
29+ if : ${{ matrix.python-version == 3.12 || matrix.python-version == 3.13 }}
2930 run : |
30- python setup.py install
31+ pip install -e . -v --no-build-isolation
32+ - name : install with setup.py develop
33+ if : ${{ matrix.python-version != 3.12 && matrix.python-version != 3.13 }}
34+ run : |
35+ python setup.py develop
3136 - name : Test nose
3237 run : |
3338 pip install -r test-requirements.txt
Original file line number Diff line number Diff line change 1+ # pyproject.toml
2+ [build-system ]
3+ requires = [" setuptools >= 42.0.0" ]
4+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 3434 'Intended Audience :: Science/Research' ,
3535 'Intended Audience :: System Administrators' ,
3636 'Intended Audience :: Telecommunications Industry' ,
37- 'License :: OSI Approved :: MIT License' ,
3837 'Operating System :: MacOS :: MacOS X' ,
3938 'Operating System :: POSIX' ,
4039 'Operating System :: Unix' ,
Original file line number Diff line number Diff line change 11-r requirements.txt
22nose2
33flake8
4+ setuptools; python_version > '3.11'
You can’t perform that action at this time.
0 commit comments