dependence.update
_Version
dataclass
Instances of this class can be be passed as self
in a call
to packaging.version.Version.__str__
, and thereby can facilitate
operations to mimic mutability for the aforementioned class.
Source code in src/dependence/update.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
|
_update_requirement_specifiers
_update_requirement_specifiers(
requirement: packaging.requirements.Requirement,
installed_version_string: str,
) -> None
This function updates specifier version numbers for a requirement to match the installed version of the package
Source code in src/dependence/update.py
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|
_get_updated_requirement_string
_get_updated_requirement_string(
requirement_string: str, ignore: set[str]
) -> str
This function updates version numbers in a requirement string to match those installed in the current environment
Source code in src/dependence/update.py
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
|
_get_updated_requirements_txt
_get_updated_requirements_txt(
data: str, ignore: collections.abc.Iterable[str] = ()
) -> str
Return the contents of a requirements.txt file, updated to reflect the
currently installed project versions, excluding those specified in
ignore
.
Parameters:
- data (str): The contents of a requirements.txt file
- ignore ([str]): One or more project names to leave as-is
Source code in src/dependence/update.py
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 |
|
_get_updated_setup_cfg
_get_updated_setup_cfg(
data: str,
ignore: collections.abc.Iterable[str] = (),
all_extra_name: str = "",
) -> str
Return the contents of a setup.cfg file, updated to reflect the
currently installed project versions, excluding those specified in
ignore
.
Parameters:
- data (str): The contents of a setup.cfg file
- ignore ([str]): One or more project names to leave as-is
- all_extra_name (str): An (optional) extra name which will consolidate requirements from all other extras
Source code in src/dependence/update.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
|
_get_updated_tox_ini
_get_updated_tox_ini(
data: str, ignore: collections.abc.Iterable[str] = ()
) -> str
Return the contents of a tox.ini file, updated to reflect the
currently installed project versions, excluding those specified in
ignore
.
Parameters:
- data (str): The contents of a tox.ini file
- ignore ([str]): One or more project names to leave as-is
Source code in src/dependence/update.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
|
_get_updated_pyproject_toml
_get_updated_pyproject_toml(
data: str,
ignore: collections.abc.Iterable[str] = (),
all_extra_name: str = "",
include_pointers: tuple[str, ...] = (),
exclude_pointers: tuple[str, ...] = (),
) -> str
Return the contents of a pyproject.toml file, updated to reflect the
currently installed project versions, excluding those specified in
ignore
.
Parameters:
-
data
(str
) –The contents of a pyproject.toml file
-
ignore
(collections.abc.Iterable[str]
, default:()
) –One or more project names to leave as-is
-
all_extra_name
(str
, default:''
) –An (optional) extra name which will consolidate requirements from all other extras
-
include_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to include (defaults to all elements).
-
exclude_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to exclude (defaults to no exclusions).
Returns:
-
str
–The contents of the updated pyproject.toml file.
Source code in src/dependence/update.py
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
_get_updated_toml
_get_updated_toml(
data: str,
ignore: collections.abc.Iterable[str] = (),
include_pointers: tuple[str, ...] = (),
exclude_pointers: tuple[str, ...] = (),
) -> str
Return the contents of a TOML file, updated to reflect the
currently installed project versions, excluding those specified in
ignore
.
Note: This functions identically to get_updated_pyproject_toml
, but
does not consolidate optional dependencies.
Parameters:
-
data
(str
) –The contents of a TOML file
-
ignore
(collections.abc.Iterable[str]
, default:()
) –One or more package names to leave as-is
-
include_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to include (defaults to all elements).
-
exclude_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to exclude (defaults to no exclusions).
Returns:
-
str
–The contents of the updated TOML file.
Source code in src/dependence/update.py
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 |
|
update
update(
paths: collections.abc.Iterable[str],
ignore: collections.abc.Iterable[str] = (),
all_extra_name: str = "",
include_pointers: tuple[str, ...] = (),
exclude_pointers: tuple[str, ...] = (),
) -> None
Update requirement versions in the specified files.
Parameters:
-
path
–One or more local paths to a setup.cfg, setup.cfg, and/or requirements.txt files
-
ignore
(collections.abc.Iterable[str]
, default:()
) –One or more project names to ignore (leave as-is)
-
all_extra_name
(str
, default:''
) –If provided, an extra which consolidates the requirements for all other extras will be added/updated to setup.cfg or setup.cfg (this argument is ignored for requirements.txt files)
-
include_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to include (defaults to all elements).
-
exclude_pointers
(tuple[str, ...]
, default:()
) –A tuple of JSON pointers indicating elements to exclude (defaults to no exclusions).
Source code in src/dependence/update.py
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 |
|