Skip to content

Commit 1a36449

Browse files
committed
install fixes
1 parent b900232 commit 1a36449

File tree

6 files changed

+25
-7
lines changed

6 files changed

+25
-7
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33

44

55

6+
## v0.3.1 minor release
7+
Installation bugfixes.
8+
9+
10+
### Download
11+
See [PyPI release page](https://pypi.org/project/unimi-dl/0.3.1)
12+
13+
14+
### Release notes
15+
16+
#### Fixed
17+
- minimum Python version is now 3.8
18+
19+
20+
21+
622
## v0.3 Menus
723
Major improvements to usability.
824

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Nota: con questo metodo è necessario tenere la repo clonata per fare uso del so
6767
## Dipendenze
6868

6969
### Esterne
70-
- python 3
70+
- python 3 (>=3.8)
7171
- ffmpeg
7272

7373
### Python

README_EN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Note: with this method it is necessary to keep the cloned repo in order to use t
4646
## Dependencies
4747

4848
### External
49-
- python 3
49+
- python 3 (>=3.8)
5050
- ffmpeg
5151

5252
### Python

setup.cfg

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,17 @@ license = attr: unimi_dl.__license__
4141
license_file = LICENSE
4242
keywords = unimi, download, ariel, panopto, labonline
4343
scripts = unimi_dl/cmd.py
44-
install_requires =
45-
requests
46-
youtube-dl
4744

4845

4946
[options]
5047
packages =
5148
unimi_dl
5249
unimi_dl.platform
53-
python_requires = >=3.6
50+
python_requires = >=3.8
51+
install_requires =
52+
requests
53+
youtube-dl
54+
5455

5556
[options.entry_points]
5657
console_scripts =

unimi_dl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# along with unimi-dl. If not, see <https://www.gnu.org/licenses/>.
1717

1818

19-
__version__ = "0.3.0"
19+
__version__ = "0.3.1"
2020
__license__ = "GPL v.3"
2121

2222
import unimi_dl.platform

unimi_dl/cmd.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# along with unimi-dl. If not, see <https://www.gnu.org/licenses/>.
1717

1818

19+
from __future__ import annotations
1920
from argparse import ArgumentParser, Namespace
2021
from datetime import datetime
2122
from getpass import getpass

0 commit comments

Comments
 (0)