File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 88runs :
99 using : " composite"
1010 steps :
11- - name : Set up Python ${{ matrix .python-version }}
11+ - name : Set up Python ${{ inputs .python-version }}
1212 uses : actions/setup-python@v5
1313 with :
1414 python-version : ${{ inputs.python-version }}
Original file line number Diff line number Diff line change 77jobs :
88 test-matrix :
99 runs-on : ubuntu-latest
10+ strategy :
11+ matrix :
12+ python-version : ['3.9', '>=3']
1013 steps :
1114 - uses : actions/checkout@v4
1215 - uses : ./.github/actions/setup
1316 with :
14- python-version : ' >=3 '
17+ python-version : ${{ matrix.python-version }}
1518
1619 - run : pip install -U pip setuptools wheel && pip install -U .
1720 - run : time python -m unittest -v pdoc.test
Original file line number Diff line number Diff line change 22import sys
33from setuptools import setup , find_packages
44
5- if sys .version_info < (3 , 7 ):
6- sys .exit ('ERROR: pdoc requires Python 3.7 +' )
5+ if sys .version_info < (3 , 9 ):
6+ sys .exit ('ERROR: pdoc requires Python 3.9 +' )
77
88
99def _discover_tests ():
@@ -58,5 +58,5 @@ def _discover_tests():
5858 'write_to' : os .path .join ('pdoc' , '_version.py' ),
5959 },
6060 test_suite = "setup._discover_tests" ,
61- python_requires = '>= 3.7 ' ,
61+ python_requires = '>= 3.9 ' ,
6262 )
You can’t perform that action at this time.
0 commit comments