Skip to content

Commit c6b4c73

Browse files
ArtyomVancyandependabot[bot]
and
dependabot[bot]
authored
Bump httpx from 0.22.0 to 0.23.0 in /tests (GH-12)
Co-authored-by: dependabot[bot] <[email protected]>
2 parents 7110ea0 + 02bf748 commit c6b4c73

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

Diff for: .github/workflows/tests.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@ on:
88

99
jobs:
1010
test:
11-
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
11+
runs-on: "ubuntu-latest"
1212
strategy:
1313
matrix:
1414
include:
15-
- python: "3.6"
16-
env: py36-fastapi68
17-
os: ubuntu-20.04 # 3.6 is not available on ubuntu-20.04
15+
- python: "3.7"
16+
env: py37-fastapi68
1817
- python: "3.8"
1918
env: py38-fastapi68
2019
- python: "3.10"

Diff for: build.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/bin/bash
22

3-
# last version of `build` supporting Python 3.6
4-
pip install build==0.9.0
3+
pip install build
54

65
# build the wheel and install it
76
WHEEL_NAME=$(python -m build | grep -Po "fastapi_oauth2-.*\.whl" | tail -n 1)

Diff for: requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fastapi>=0.68.1
2-
httpx>=0.22.0
2+
httpx>=0.23.0
33
oauthlib>=3.2.2
44
python-jose>=3.3.0
55
social-auth-core>=4.4.2

Diff for: setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,25 +31,25 @@ classifiers =
3131
Framework :: FastAPI
3232
Programming Language :: Python
3333
Programming Language :: Python :: 3
34-
Programming Language :: Python :: 3.6
3534
Programming Language :: Python :: 3.7
3635
Programming Language :: Python :: 3.8
3736
Programming Language :: Python :: 3.9
3837
Programming Language :: Python :: 3.10
38+
Programming Language :: Python :: 3.11
3939
License :: OSI Approved :: MIT License
4040

4141
[options]
4242
packages =
4343
fastapi_oauth2
4444
install_requires =
4545
fastapi>=0.68.1
46-
httpx>=0.22.0
46+
httpx>=0.23.0
4747
oauthlib>=3.2.2
4848
python-jose>=3.3.0
4949
social-auth-core>=4.4.2
5050
starlette>=0.19.1
5151
include_package_data = yes
52-
python_requires = >=3.6
52+
python_requires = >=3.7
5353
package_dir =
5454
=src
5555
zip_safe = no

Diff for: tests/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
tox==3.24.3
22
trio>=0.19.0
33
pytest==6.2.5
4-
httpx==0.22.0
4+
httpx==0.23.0
55
appengine-python-standard # for loading the gae backend

Diff for: tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,38,310,311}-fastapi68
3+
py{37,38,310,311}-fastapi68
44
py{37,39,310,311}-fastapi{84,100}
55

66
[testenv]

0 commit comments

Comments
 (0)