Skip to content

Commit df50c71

Browse files
Bump pyjwt from 2.10.1 to 2.12.0 in /requirements (#1748)
* Bump pyjwt from 2.10.1 to 2.12.0 in /requirements Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.10.1 to 2.12.0. - [Release notes](https://github.com/jpadilla/pyjwt/releases) - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) - [Commits](jpadilla/pyjwt@2.10.1...2.12.0) --- updated-dependencies: - dependency-name: pyjwt dependency-version: 2.12.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * fix(warning): token lenght shorter than 32B --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Elim Pizza <elimpizza@gmail.com>
1 parent 212e4cd commit df50c71

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

requirements/dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pycparser==2.21
180180
# cffi
181181
pygments==2.17.2
182182
# via ipython
183-
pyjwt==2.10.1
183+
pyjwt==2.12.0
184184
# via -r prod.txt
185185
pyproject-hooks==1.0.0
186186
# via

requirements/functests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pycparser==2.21
176176
# cffi
177177
pygments==2.19.2
178178
# via pytest
179-
pyjwt==2.10.1
179+
pyjwt==2.12.0
180180
# via -r prod.txt
181181
pyproject-hooks==1.0.0
182182
# via

requirements/lint.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ pygments==2.19.2
266266
# -r functests.txt
267267
# -r tests.txt
268268
# pytest
269-
pyjwt==2.10.1
269+
pyjwt==2.12.0
270270
# via
271271
# -r functests.txt
272272
# -r tests.txt

requirements/prod.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pyasn1-modules==0.3.0
9595
# via google-auth
9696
pycparser==2.21
9797
# via cffi
98-
pyjwt==2.10.1
98+
pyjwt==2.12.0
9999
# via -r prod.in
100100
pyramid==2.0.2
101101
# via

requirements/tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ pycparser==2.21
180180
# cffi
181181
pygments==2.19.2
182182
# via pytest
183-
pyjwt==2.10.1
183+
pyjwt==2.12.0
184184
# via -r prod.txt
185185
pyproject-hooks==1.0.0
186186
# via

requirements/typecheck.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ pycparser==2.21
160160
# via
161161
# -r prod.txt
162162
# cffi
163-
pyjwt==2.10.1
163+
pyjwt==2.12.0
164164
# via -r prod.txt
165165
pyproject-hooks==1.1.0
166166
# via

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def pyramid_settings():
3030
"data_directory": "tests/data_directory",
3131
"dev": False,
3232
"youtube_transcripts": True,
33-
"api_jwt_secret": "secret",
33+
"api_jwt_secret": "test_api_jwt_secret_at_least_32_bytes_long",
3434
"youtube_api_key": "test_youtube_api_key",
3535
"supadata_api_key": "test_supadata_api_key",
3636
"database_url": environ["DATABASE_URL"],

0 commit comments

Comments
 (0)