File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 30
30
needs : [wait]
31
31
strategy :
32
32
matrix :
33
- python-version : ['2.7', '3.6 ']
33
+ python-version : ['2.7', '3.10 ']
34
34
35
35
steps :
36
36
- name : Checkout code
Original file line number Diff line number Diff line change 25
25
do_not_skip : ' ["pull_request"]'
26
26
27
27
tests :
28
- name : Run tests (${{ github.event_name }}, ${{ matrix.python-version }})
29
- runs-on : ubuntu-18.04
28
+ name : Run tests (${{ github.event_name }}, ${{ matrix.python-version }} on ${{ runner.os }} )
29
+ runs-on : ${{ runner.os }}
30
30
needs : [check_duplicate_runs]
31
31
if : ${{ needs.check_duplicate_runs.outputs.should_skip != 'true' }}
32
32
strategy :
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Changelog
23
23
.. change ::
24
24
:tags: general, deprecated
25
25
26
- Python 2.7 and 3.6 support is deprecated due to their end of life.
26
+ Python 2.7, 3.5 and 3.6 support is deprecated due to their end of life.
27
27
28
28
It will be completely removed in ``2.0 `` version. A warning message is added
29
29
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ Python version support
111
111
+------------------------------------+------------------+------------+------------------+--------------+
112
112
| Package | Python 3 support | Type hints | Python 2 support | PyPy support |
113
113
+====================================+==================+============+==================+==============+
114
- | setuptools-git-versioning | 3.5+ | yes | deprecated | unknown |
114
+ | setuptools-git-versioning | 3.5+ | yes | deprecated | yes |
115
115
+------------------------------------+------------------+------------+------------------+--------------+
116
116
| setuptools-scm | 3.6+ | yes | no | unknown |
117
117
+------------------------------------+------------------+------------+------------------+--------------+
Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ def version_from_git(
315
315
316
316
if sys .version_info < (3 , 7 ):
317
317
warnings .warn (
318
- "Python 2.7 and 3.6 support is deprecated "
318
+ "Python 2.7, 3.5 and 3.6 support is deprecated "
319
319
"since setuptools-git-versioning v1.8.0 "
320
320
"and will be dropped in v2.0.0\n "
321
321
"Please upgrade your Python version to 3.7+" ,
You can’t perform that action at this time.
0 commit comments