Skip to content

Commit b0c09db

Browse files
authored
Merge branch 'trunk' into zhiwei/linode-dns-update
2 parents 86b4e91 + f3af38f commit b0c09db

5 files changed

Lines changed: 82 additions & 71 deletions

File tree

doap_libcloud.rdf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,6 +546,13 @@
546546
<revision>v3.9.0</revision>
547547
</Version>
548548
</release>
549+
<release>
550+
<Version>
551+
<name>3.9.1</name>
552+
<created>2026-04-16</created>
553+
<revision>v3.9.1</revision>
554+
</Version>
555+
</release>
549556

550557
<repository>
551558
<SVNRepository>

libcloud/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
__all__ = ["__version__", "enable_debug"]
4141

42-
__version__ = "3.9.1.dev0"
42+
__version__ = "3.9.2.dev0"
4343

4444

4545
def enable_debug(fo):

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ publish = [
8080
]
8181
test = [
8282
"coverage[toml]==7.2.7; python_version >= '3.10'",
83-
"requests>=2.31.0",
83+
"requests>=2.33.0",
8484
"requests_mock==1.12.1",
85-
"pytest==8.3.5",
85+
"pytest==9.0.3",
8686
"pytest-xdist==3.6.1",
8787
"pytest-timeout==2.3.1",
8888
"pytest-benchmark[histogram]==5.1.0; python_version >= '3.10'",
89-
"cryptography==46.0.5",
89+
"cryptography==46.0.7",
9090
"pyopenssl==26.0.0",
9191
"fasteners",
9292
"paramiko==3.5.1; platform_python_implementation != 'PyPy'",
@@ -112,6 +112,7 @@ docs = [
112112
"fasteners",
113113
"sphinx_rtd_theme==2.0.0",
114114
"sphinx==6.2.1",
115+
"pygments>=2.20.0,<3.0.0",
115116
]
116117
mypy = [
117118
"mypy==1.15.0; python_version >= '3.10' and implementation_name == \"cpython\"",

scripts/time_imports.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
set -e
1919

2020
# Script which fails if any of the import takes more than threshold ms
21-
LIBCLOUD_CUMULATIVE_IMPORT_TIME_LIMIT_US=1000000
21+
LIBCLOUD_CUMULATIVE_IMPORT_TIME_LIMIT_US=2000000
2222
EC2_DRIVER_CUMULATIVE_IMPORT_TIME_LIMIT_US=560000
2323

2424
# Clean up any cached files to ensure consistent and clean environment

0 commit comments

Comments
 (0)