File tree 3 files changed +8
-5
lines changed 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 8
8
runs :
9
9
using : " composite"
10
10
steps :
11
- - name : Set up Python ${{ matrix .python-version }}
11
+ - name : Set up Python ${{ inputs .python-version }}
12
12
uses : actions/setup-python@v5
13
13
with :
14
14
python-version : ${{ inputs.python-version }}
Original file line number Diff line number Diff line change 7
7
jobs :
8
8
test-matrix :
9
9
runs-on : ubuntu-latest
10
+ strategy :
11
+ matrix :
12
+ python-version : ['3.9', '>=3']
10
13
steps :
11
14
- uses : actions/checkout@v4
12
15
- uses : ./.github/actions/setup
13
16
with :
14
- python-version : ' >=3 '
17
+ python-version : ${{ matrix.python-version }}
15
18
16
19
- run : pip install -U pip setuptools wheel && pip install -U .
17
20
- run : time python -m unittest -v pdoc.test
Original file line number Diff line number Diff line change 2
2
import sys
3
3
from setuptools import setup , find_packages
4
4
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 +' )
7
7
8
8
9
9
def _discover_tests ():
@@ -58,5 +58,5 @@ def _discover_tests():
58
58
'write_to' : os .path .join ('pdoc' , '_version.py' ),
59
59
},
60
60
test_suite = "setup._discover_tests" ,
61
- python_requires = '>= 3.7 ' ,
61
+ python_requires = '>= 3.9 ' ,
62
62
)
You can’t perform that action at this time.
0 commit comments