gpt-pr 0.4.0__py3-none-any.whl → 0.4.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gpt-pr might be problematic. Click here for more details.
- {gpt_pr-0.4.0.dist-info → gpt_pr-0.4.1.dist-info}/METADATA +1 -1
- {gpt_pr-0.4.0.dist-info → gpt_pr-0.4.1.dist-info}/RECORD +7 -7
- gptpr/checkversion.py +2 -1
- gptpr/version.py +1 -1
- {gpt_pr-0.4.0.dist-info → gpt_pr-0.4.1.dist-info}/WHEEL +0 -0
- {gpt_pr-0.4.0.dist-info → gpt_pr-0.4.1.dist-info}/entry_points.txt +0 -0
- {gpt_pr-0.4.0.dist-info → gpt_pr-0.4.1.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
gptpr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
gptpr/checkversion.py,sha256=
|
|
2
|
+
gptpr/checkversion.py,sha256=PmbGiYJelecs1Fv2aAZwdr6wn-qDC826nsYI4A6LLvk,2389
|
|
3
3
|
gptpr/config.py,sha256=YVQgTuJYVwqAabqK-E3xSzlc4QUvZb0q4dUW-_pY2cg,2609
|
|
4
4
|
gptpr/consolecolor.py,sha256=_JmBMNjIflWMlgP2VkCWu6uQLR9oHBy52uV3TRJJgF4,800
|
|
5
5
|
gptpr/gh.py,sha256=uSWY_TzbrAM00neOBkyfV5vxDO4FzMtIrs-Zczp-Tck,1127
|
|
@@ -9,9 +9,9 @@ gptpr/prdata.py,sha256=ejx4zLRViJ83OmqvlxGWnw7alo8RPL_YdlwEJFhMQ8g,6183
|
|
|
9
9
|
gptpr/test_checkversion.py,sha256=WtJ3v4MMkFG0Kob0R1wi_nwVhcQFd4mXtKCKZHajEhM,4266
|
|
10
10
|
gptpr/test_config.py,sha256=_vP-3RJf8WXGGQESr5bCUbmxf8owc1uVJXMSBF_MtH0,2712
|
|
11
11
|
gptpr/test_prdata.py,sha256=rSJ-yqOdw-iYdBWyqnA2SXbdrhT8KgIkRTTf9SY1S1g,474
|
|
12
|
-
gptpr/version.py,sha256=
|
|
13
|
-
gpt_pr-0.4.
|
|
14
|
-
gpt_pr-0.4.
|
|
15
|
-
gpt_pr-0.4.
|
|
16
|
-
gpt_pr-0.4.
|
|
17
|
-
gpt_pr-0.4.
|
|
12
|
+
gptpr/version.py,sha256=pMtTmSUht-XtbR_7Doz6bsQqopJJd8rZ8I8zy2HwwoA,22
|
|
13
|
+
gpt_pr-0.4.1.dist-info/METADATA,sha256=xcj4KIGRUS5pFaXrVe7AM5YOfy7dm9JA8VE-IVVwsHI,2638
|
|
14
|
+
gpt_pr-0.4.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
15
|
+
gpt_pr-0.4.1.dist-info/entry_points.txt,sha256=WhcbcQXqo5-IGliYWiYMhop4-Wm7bcH2ljFKLWrmO7c,81
|
|
16
|
+
gpt_pr-0.4.1.dist-info/top_level.txt,sha256=DZcbzlsjh4BD8njGcvhOeCZ83U_oYWgCn0w8qx5--04,6
|
|
17
|
+
gpt_pr-0.4.1.dist-info/RECORD,,
|
gptpr/checkversion.py
CHANGED
|
@@ -24,7 +24,8 @@ def cache_daily_version(func):
|
|
|
24
24
|
if datetime.now() - last_checked < CACHE_DURATION:
|
|
25
25
|
# Use cached version info
|
|
26
26
|
latest_version = cache.get('latest_version')
|
|
27
|
-
|
|
27
|
+
if latest_version:
|
|
28
|
+
return latest_version
|
|
28
29
|
|
|
29
30
|
latest_version = func(*args, **kwargs)
|
|
30
31
|
cache = {
|
gptpr/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.4.
|
|
1
|
+
__version__ = "0.4.1"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|