Skip to content

Commit baad65c

Browse files
committed
Drop CPython 3.6
1 parent 24fea0c commit baad65c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/run-cibuildwheel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
if: ${{ matrix.cibw_archs }}
5555
run: echo "CIBW_ARCHS=${{ matrix.cibw_archs }}" >> $GITHUB_ENV
5656
shell: bash
57+
- name: Set CIBW_SKIP
58+
run: echo "CIBW_SKIP=cp36-*" >> $GITHUB_ENV
5759
- name: Build wheels
5860
uses: pypa/[email protected]
5961
with:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: [ubuntu-20.04, windows-2019, macos-11]
13-
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
13+
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11']
1414
steps:
1515
- uses: actions/checkout@v2
1616
with:

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ There are several ways of running the test suite:
7171

7272
- Run the test with the current Python interpreter:
7373

74-
From the toplevel directory, run: ``python tests/tests.py``
74+
From the top level directory, run: ``python tests/tests.py``
7575

7676
- Use Tox to run the test suite in several virtualenvs with several interpreters
7777

78-
From the toplevel directory, run: ``tox -e py36,py37,py38,py39`` this will run the test suite
79-
on Python 3.6 through 3.9 (you'll need to have them installed beforehand)
78+
From the top level directory, run: ``tox -e py37,py38,py39`` this will run the test suite
79+
on Python 3.7 through 3.9 (you'll need to have them installed beforehand)
8080

8181

8282
Using it from the cli, a la dig
@@ -120,7 +120,7 @@ Unless stated otherwise on-file pycares uses the MIT license, check LICENSE file
120120
Supported Python versions
121121
-------------------------
122122

123-
Python >= 3.6 are supported. Both CPython and PyPy are supported.
123+
Python >= 3.7 are supported. Both CPython and PyPy are supported.
124124

125125

126126
Contributing

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ def get_version():
3636
'Operating System :: Microsoft :: Windows',
3737
'Programming Language :: Python',
3838
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.6',
4039
'Programming Language :: Python :: 3.7',
4140
'Programming Language :: Python :: 3.8',
4241
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)