File tree Expand file tree Collapse file tree 5 files changed +16
-15
lines changed
Expand file tree Collapse file tree 5 files changed +16
-15
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 matrix :
1111 include :
12- - os : ubuntu-20.04
13- name : ubuntu_20
14- pypi : yes
1512 - os : ubuntu-22.04
1613 name : ubuntu_22
14+ pypi : yes
15+ - os : ubuntu-24.04
16+ name : ubuntu_24
1717 - os : macos-latest
1818 name : macos
1919 - os : windows-latest
Original file line number Diff line number Diff line change 88 matrix :
99 include :
1010 # Ubuntu
11- - os : ubuntu-20 .04
11+ - os : ubuntu-22 .04
1212 python-version : " 3.8"
1313 pyinstaller : yes
14- - os : ubuntu-20 .04
14+ - os : ubuntu-22 .04
1515 python-version : " 3.9"
16- - os : ubuntu-20 .04
16+ - os : ubuntu-22 .04
1717 python-version : " 3.10"
18- - os : ubuntu-20 .04
18+ - os : ubuntu-22 .04
1919 python-version : " 3.11"
20- - os : ubuntu-20 .04
20+ - os : ubuntu-22 .04
2121 python-version : " 3.12"
2222
2323 # Mac
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 4.0.0 (provisional)
3+ ## 4.0.0
44
55* Breaking*
66
99
1010* Features*
1111
12+ - Adding ` bluesky ` commands.
1213- Adding ` reddit ` commands.
1314- Adding ` image ` and ` pagetype ` features to ` minet extract ` outputs.
1415
Original file line number Diff line number Diff line change 1- __version__ = "3.2 .0"
2- __published__ = "2024-12-18 "
1+ __version__ = "4.0 .0"
2+ __published__ = "2025-02-19 "
33__identifier__ = "%s (%s)" % (__version__ , __published__ )
Original file line number Diff line number Diff line change @@ -73,18 +73,18 @@ if [[ $(uname -s) == "Darwin" ]]; then
7373 os=" macos"
7474 echo " Installing minet for mac..."
7575elif cat /etc/os-release | grep -q " Debian GNU/Linux" ; then
76- os=" ubuntu_20 "
76+ os=" ubuntu_22 "
7777 echo " Installing minet for debian..."
7878else
7979 ubuntu_version=$( get_ubuntu_version)
8080
8181 if [[ $ubuntu_version != " unknown" ]]; then
8282 echo " Installing minet for ubuntu $ubuntu_version (or similar)..."
8383
84- if [[ $ubuntu_version -le " 20" ]]; then
85- os=" ubuntu_20"
86- else
84+ if [[ $ubuntu_version -le " 22" ]]; then
8785 os=" ubuntu_22"
86+ else
87+ os=" ubuntu_24"
8888 fi
8989 else
9090 fail_install
You can’t perform that action at this time.
0 commit comments