Skip to content

Commit 09cb16a

Browse files
authored
Merge branch 'develop' into feat/sqlite_conn_timeout
2 parents a48a9af + 1bef008 commit 09cb16a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

reframe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import os
77
import sys
88

9-
VERSION = '4.7.0-dev.4'
9+
VERSION = '4.7.0-dev.5'
1010
INSTALL_PREFIX = os.path.normpath(
1111
os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
1212
)

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
archspec==0.2.4
22
argcomplete==3.1.2; python_version < '3.8'
3-
argcomplete==3.4.0; python_version >= '3.8'
3+
argcomplete==3.5.0; python_version >= '3.8'
44
filelock==3.4.1; python_version == '3.6'
55
filelock==3.12.2; python_version == '3.7'
66
filelock==3.15.4; python_version >= '3.8'
77
importlib_metadata==4.0.1; python_version < '3.8'
88
jsonschema==3.2.0
99
lxml==5.2.0; python_version < '3.8' and platform_machine == 'aarch64'
10-
lxml==5.2.2; python_version >= '3.8' or platform_machine != 'aarch64'
10+
lxml==5.3.0; python_version >= '3.8' or platform_machine != 'aarch64'
1111
pytest==7.0.1; python_version < '3.8'
1212
pytest==8.3.2; python_version >= '3.8'
1313
pytest-forked==1.4.0; python_version == '3.6'
@@ -24,7 +24,7 @@ semver==2.13.0; python_version == '3.6'
2424
semver==3.0.2; python_version >= '3.7'
2525
setuptools==59.6.0; python_version == '3.6'
2626
setuptools==68.0.0; python_version == '3.7'
27-
setuptools==72.1.0; python_version >= '3.8'
27+
setuptools==74.0.0; python_version >= '3.8'
2828
tabulate==0.8.10; python_version == '3.6'
2929
tabulate==0.9.0; python_version >= '3.7'
3030
wcwidth==0.2.13

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ install_requires =
3434
filelock<=3.4.1; python_version == '3.6'
3535
jsonschema
3636
lxml==5.2.0; python_version < '3.8' and platform_machine == 'aarch64'
37-
lxml==5.2.2; python_version >= '3.8' or platform_machine != 'aarch64'
37+
lxml==5.3.0; python_version >= '3.8' or platform_machine != 'aarch64'
3838
PyYAML
3939
requests
4040
requests <= 2.27.1; python_version == '3.6'

0 commit comments

Comments
 (0)