We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d73abb commit 0c944e6Copy full SHA for 0c944e6
3 files changed
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+0.20.4
2
+======
3
+
4
+* Fix relenv fetch default version
5
+* Remove repo.saltproject.io from fetch locations
6
7
8
0.20.3
9
======
10
relenv/common.py
@@ -18,7 +18,7 @@
18
import time
19
20
# relenv package version
21
-__version__ = "0.20.3"
+__version__ = "0.20.4"
22
23
MODULE_DIR = pathlib.Path(__file__).resolve().parent
24
@@ -32,7 +32,6 @@
32
33
CHECK_HOSTS = (
34
"packages.broadcom.com/artifactory/saltproject-generic",
35
- "repo.saltproject.io",
36
"woz.io",
37
)
38
relenv/fetch.py
@@ -39,7 +39,7 @@ def setup_parser(subparsers):
39
40
subparser.add_argument(
41
"--python",
42
- default="3.10.17",
+ default="3.10.18",
43
type=str,
44
help="The python version [default: %(default)s]",
45
0 commit comments