Skip to content

Commit 858b9a3

Browse files
committed
Add 3.9 to test environments
1 parent 33dc1d9 commit 858b9a3

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
strategy:
3535
matrix:
36-
python: ['3.6', '3.7', '3.8']
36+
python: ['3.6', '3.7', '3.8', '3.9']
3737
steps:
3838
- uses: actions/checkout@v1
3939
- name: Setup Build Tools

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,5 @@ dist/
66
httpx_gssapi.egg-info/
77
venv*/
88
.idea/
9+
.tox/
910

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
httpx
1+
httpx~=0.16.1
22
gssapi
33
pytest

setup.cfg

+22-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ classifiers =
1212
Programming Language :: Python :: 3.6
1313
Programming Language :: Python :: 3.7
1414
Programming Language :: Python :: 3.8
15+
Programming Language :: Python :: 3.9
1516
Topic :: Software Development :: Libraries :: Python Modules
1617
keywords =
1718
httpx
@@ -24,7 +25,7 @@ python_requires = >=3.6
2425
packages = httpx_gssapi
2526
tests_require = pytest
2627
install_requires =
27-
httpx
28+
httpx~=0.16.1
2829
gssapi
2930
3031
[options.package_data]
@@ -56,7 +57,26 @@ build-dir = doc/build/
5657
[flake8]
5758
max-line-length = 80
5859
filename = httpx_gssapi/**.py
59-
exclude = tests,build,dist,venv,.tox,*.egg*,coverage,doc,httpx_gssapi/_version.py
60+
exclude =
61+
tests,
62+
build,
63+
dist,
64+
venv,
65+
.tox,
66+
*.egg*,
67+
coverage,
68+
doc,
69+
httpx_gssapi/_version.py
70+
71+
[tox:tox]
72+
envlist = py36, py37, py38, py39
73+
74+
[testenv]
75+
deps =
76+
pytest
77+
k5test
78+
commands =
79+
python -m pytest
6080
6181
[versioneer]
6282
VCS = git

0 commit comments

Comments
 (0)