Skip to content

Commit c5169e5

Browse files
authored
Merge pull request #2508 from seleniumbase/officially-support-python-3.13
Officially support python 3.13
2 parents 47898e2 + fa09357 commit c5169e5

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pluggy==1.2.0;python_version<"3.8"
3939
pluggy==1.4.0;python_version>="3.8"
4040
py==1.11.0
4141
pytest==7.4.4;python_version<"3.8"
42-
pytest==8.0.0;python_version>="3.8"
42+
pytest==8.0.1;python_version>="3.8"
4343
pytest-html==2.0.1
4444
pytest-metadata==3.0.0;python_version<"3.8"
4545
pytest-metadata==3.1.1;python_version>="3.8"

seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.23.4"
2+
__version__ = "4.23.5"

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@
126126
"Programming Language :: Python :: 3.10",
127127
"Programming Language :: Python :: 3.11",
128128
"Programming Language :: Python :: 3.12",
129+
"Programming Language :: Python :: 3.13",
129130
"Topic :: Internet",
130131
"Topic :: Internet :: WWW/HTTP :: Browsers",
131132
"Topic :: Scientific/Engineering",
@@ -186,7 +187,7 @@
186187
'pluggy==1.4.0;python_version>="3.8"',
187188
"py==1.11.0",
188189
'pytest==7.4.4;python_version<"3.8"',
189-
'pytest==8.0.0;python_version>="3.8"',
190+
'pytest==8.0.1;python_version>="3.8"',
190191
"pytest-html==2.0.1", # Newer ones had issues
191192
'pytest-metadata==3.0.0;python_version<"3.8"',
192193
'pytest-metadata==3.1.1;python_version>="3.8"',
@@ -250,7 +251,7 @@
250251
'pdfminer.six==20221105;python_version<"3.8"',
251252
'pdfminer.six==20231228;python_version>="3.8"',
252253
'cryptography==39.0.2;python_version<"3.9"',
253-
'cryptography==42.0.2;python_version>="3.9"',
254+
'cryptography==42.0.3;python_version>="3.9"',
254255
'cffi==1.15.1;python_version<"3.8"',
255256
'cffi==1.16.0;python_version>="3.8"',
256257
"pycparser==2.21",

0 commit comments

Comments
 (0)