Skip to content

Commit d7fc55d

Browse files
committed
Run tests on MacOS and Windows
1 parent 719456b commit d7fc55d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
needs: [wait]
3131
strategy:
3232
matrix:
33-
python-version: ['2.7', '3.6']
33+
python-version: ['2.7', '3.10']
3434

3535
steps:
3636
- name: Checkout code

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ jobs:
2525
do_not_skip: '["pull_request"]'
2626

2727
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 }}
3030
needs: [check_duplicate_runs]
3131
if: ${{ needs.check_duplicate_runs.outputs.should_skip != 'true' }}
3232
strategy:

CHANGELOG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Changelog
2323
.. change::
2424
:tags: general, deprecated
2525

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.
2727

2828
It will be completely removed in ``2.0`` version. A warning message is added
2929

docs/differences.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Python version support
111111
+------------------------------------+------------------+------------+------------------+--------------+
112112
| Package | Python 3 support | Type hints | Python 2 support | PyPy support |
113113
+====================================+==================+============+==================+==============+
114-
| setuptools-git-versioning | 3.5+ | yes | deprecated | unknown |
114+
| setuptools-git-versioning | 3.5+ | yes | deprecated | yes |
115115
+------------------------------------+------------------+------------+------------------+--------------+
116116
| setuptools-scm | 3.6+ | yes | no | unknown |
117117
+------------------------------------+------------------+------------+------------------+--------------+

setuptools_git_versioning.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ def version_from_git(
315315

316316
if sys.version_info < (3, 7):
317317
warnings.warn(
318-
"Python 2.7 and 3.6 support is deprecated "
318+
"Python 2.7, 3.5 and 3.6 support is deprecated "
319319
"since setuptools-git-versioning v1.8.0 "
320320
"and will be dropped in v2.0.0\n"
321321
"Please upgrade your Python version to 3.7+",

0 commit comments

Comments
 (0)