Skip to content

Commit

Permalink
Update lonesnake from 0.36.0 to 0.37.0 with new CPython patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Dec 4, 2024
1 parent e1a615f commit cc04fc3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sudo pacman -S --needed curl base-devel openssl zlib xz

```bash
mkdir -p ~/.local/bin && \
curl -sL -o ~/.local/bin/lonesnake https://raw.githubusercontent.com/pwalch/lonesnake/0.36.0/lonesnake && \
curl -sL -o ~/.local/bin/lonesnake https://raw.githubusercontent.com/pwalch/lonesnake/0.37.0/lonesnake && \
chmod u+x ~/.local/bin/lonesnake
```

Expand Down Expand Up @@ -365,7 +365,7 @@ Before using `lonesnake-kit`, make sure to read the instructions for vanilla `lo

```bash
mkdir -p ~/.local/bin && \
curl -sL -o ~/.local/bin/lonesnake-kit https://raw.githubusercontent.com/pwalch/lonesnake/0.36.0/helpers/lonesnake-kit && \
curl -sL -o ~/.local/bin/lonesnake-kit https://raw.githubusercontent.com/pwalch/lonesnake/0.37.0/helpers/lonesnake-kit && \
chmod u+x ~/.local/bin/lonesnake-kit
```

Expand Down
2 changes: 1 addition & 1 deletion helpers/lonesnake-kit
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -euo pipefail

PROG_NAME="$(basename "$0")"
readonly PROG_VERSION="0.36.0"
readonly PROG_VERSION="0.37.0"

readonly STANDALONE_DIRNAME=".lonesnake"

Expand Down
12 changes: 6 additions & 6 deletions lonesnake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

set -euo pipefail

readonly PROG_VERSION="0.36.0"
readonly PROG_VERSION="0.37.0"

PROG_NAME="$(basename "$0")"
readonly PROG_NAME
Expand All @@ -21,11 +21,11 @@ readonly CACHE_DIR="$HOME/.cache/lonesnake"
# Latest patch version number for each supported Python minor version
readonly LATEST_PATCH_CP37="17"
readonly LATEST_PATCH_CP38="20"
readonly LATEST_PATCH_CP39="20"
readonly LATEST_PATCH_CP310="15"
readonly LATEST_PATCH_CP311="10"
readonly LATEST_PATCH_CP312="7"
readonly LATEST_PATCH_CP313="0"
readonly LATEST_PATCH_CP39="21"
readonly LATEST_PATCH_CP310="16"
readonly LATEST_PATCH_CP311="11"
readonly LATEST_PATCH_CP312="8"
readonly LATEST_PATCH_CP313="1"

# Default CPython version if the user does not request a specific version
readonly DEFAULT_CP_MINOR="3.13"
Expand Down

0 comments on commit cc04fc3

Please sign in to comment.