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 9
9
strategy :
10
10
matrix :
11
11
include :
12
- - os : ubuntu-20.04
13
- name : ubuntu_20
14
- pypi : yes
15
12
- os : ubuntu-22.04
16
13
name : ubuntu_22
14
+ pypi : yes
15
+ - os : ubuntu-24.04
16
+ name : ubuntu_24
17
17
- os : macos-latest
18
18
name : macos
19
19
- os : windows-latest
Original file line number Diff line number Diff line change 8
8
matrix :
9
9
include :
10
10
# Ubuntu
11
- - os : ubuntu-20 .04
11
+ - os : ubuntu-22 .04
12
12
python-version : " 3.8"
13
13
pyinstaller : yes
14
- - os : ubuntu-20 .04
14
+ - os : ubuntu-22 .04
15
15
python-version : " 3.9"
16
- - os : ubuntu-20 .04
16
+ - os : ubuntu-22 .04
17
17
python-version : " 3.10"
18
- - os : ubuntu-20 .04
18
+ - os : ubuntu-22 .04
19
19
python-version : " 3.11"
20
- - os : ubuntu-20 .04
20
+ - os : ubuntu-22 .04
21
21
python-version : " 3.12"
22
22
23
23
# Mac
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 4.0.0 (provisional)
3
+ ## 4.0.0
4
4
5
5
* Breaking*
6
6
9
9
10
10
* Features*
11
11
12
+ - Adding ` bluesky ` commands.
12
13
- Adding ` reddit ` commands.
13
14
- Adding ` image ` and ` pagetype ` features to ` minet extract ` outputs.
14
15
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 "
3
3
__identifier__ = "%s (%s)" % (__version__ , __published__ )
Original file line number Diff line number Diff line change @@ -73,18 +73,18 @@ if [[ $(uname -s) == "Darwin" ]]; then
73
73
os=" macos"
74
74
echo " Installing minet for mac..."
75
75
elif cat /etc/os-release | grep -q " Debian GNU/Linux" ; then
76
- os=" ubuntu_20 "
76
+ os=" ubuntu_22 "
77
77
echo " Installing minet for debian..."
78
78
else
79
79
ubuntu_version=$( get_ubuntu_version)
80
80
81
81
if [[ $ubuntu_version != " unknown" ]]; then
82
82
echo " Installing minet for ubuntu $ubuntu_version (or similar)..."
83
83
84
- if [[ $ubuntu_version -le " 20" ]]; then
85
- os=" ubuntu_20"
86
- else
84
+ if [[ $ubuntu_version -le " 22" ]]; then
87
85
os=" ubuntu_22"
86
+ else
87
+ os=" ubuntu_24"
88
88
fi
89
89
else
90
90
fail_install
You can’t perform that action at this time.
0 commit comments