mirror of
https://github.com/borgbackup/borg.git
synced 2025-12-18 15:46:20 -05:00
drop python 3.9, more work was needed
This commit is contained in:
parent
bcbff56bde
commit
c41d1b1fe2
5 changed files with 9 additions and 7 deletions
6
Vagrantfile
vendored
6
Vagrantfile
vendored
|
|
@ -131,9 +131,11 @@ def packages_openindiana
|
|||
return <<-EOF
|
||||
pkg install gcc-13 git
|
||||
pkg install pkg-config libxxhash
|
||||
ln -sf /usr/bin/python3.9 /usr/bin/python3
|
||||
pkg install python-313
|
||||
ln -sf /usr/bin/python3.13 /usr/bin/python3
|
||||
ln -sf /usr/bin/python3.13-config /usr/bin/python3-config
|
||||
python3 -m ensurepip
|
||||
ln -sf /usr/bin/pip3.9 /usr/bin/pip3
|
||||
ln -sf /usr/bin/pip3.13 /usr/bin/pip3
|
||||
pip3 install virtualenv
|
||||
# let borg's pkg-config find openssl:
|
||||
pfexec pkg set-mediator -V 3 openssl
|
||||
|
|
|
|||
|
|
@ -120,7 +120,7 @@ class DiffMixIn:
|
|||
+++++++++++++++++++++++++++
|
||||
|
||||
The ``--format`` option uses Python's `format string syntax
|
||||
<https://docs.python.org/3.9/library/string.html#formatstrings>`_.
|
||||
<https://docs.python.org/3.10/library/string.html#formatstrings>`_.
|
||||
|
||||
Examples:
|
||||
::
|
||||
|
|
|
|||
|
|
@ -350,11 +350,11 @@ class HelpMixIn:
|
|||
|
||||
{now}
|
||||
The current local date and time, by default in ISO-8601 format.
|
||||
You can also supply your own `format string <https://docs.python.org/3.9/library/datetime.html#strftime-and-strptime-behavior>`_, e.g. {now:%Y-%m-%d_%H:%M:%S}
|
||||
You can also supply your own `format string <https://docs.python.org/3.10/library/datetime.html#strftime-and-strptime-behavior>`_, e.g. {now:%Y-%m-%d_%H:%M:%S}
|
||||
|
||||
{utcnow}
|
||||
The current UTC date and time, by default in ISO-8601 format.
|
||||
You can also supply your own `format string <https://docs.python.org/3.9/library/datetime.html#strftime-and-strptime-behavior>`_, e.g. {utcnow:%Y-%m-%d_%H:%M:%S}
|
||||
You can also supply your own `format string <https://docs.python.org/3.10/library/datetime.html#strftime-and-strptime-behavior>`_, e.g. {utcnow:%Y-%m-%d_%H:%M:%S}
|
||||
|
||||
{user}
|
||||
The user name (or UID, if no name is available) of the user running borg.
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ class ListMixIn:
|
|||
+++++++++++++++++++++++++++
|
||||
|
||||
The ``--format`` option uses Python's `format string syntax
|
||||
<https://docs.python.org/3.9/library/string.html#formatstrings>`_.
|
||||
<https://docs.python.org/3.10/library/string.html#formatstrings>`_.
|
||||
|
||||
Examples:
|
||||
::
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@ class RepoListMixIn:
|
|||
+++++++++++++++++++++++++++
|
||||
|
||||
The ``--format`` option uses Python's `format string syntax
|
||||
<https://docs.python.org/3.9/library/string.html#formatstrings>`_.
|
||||
<https://docs.python.org/3.10/library/string.html#formatstrings>`_.
|
||||
|
||||
Examples:
|
||||
::
|
||||
|
|
|
|||
Loading…
Reference in a new issue