File tree Expand file tree Collapse file tree 4 files changed +31
-4
lines changed
examples/tutorial_files/Journal Expand file tree Collapse file tree 4 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,21 @@ pip3 install PySimpleGUI
33
33
pip3 install **pysimplesql**
34
34
```
35
35
36
+ ** pysimplesql** is now in active development and constantly changing. When an update is available, a message similar to
37
+ the following will be displayed in the output of the program:
38
+
39
+ ``` ***** pysimplesql update to v0.0.5 available! Just run pip3 install pysimplesql --upgrade ***** ```
40
+
41
+ Be sure to update the package when you get this message, or from time to time with
42
+ the following command:
43
+ ```
44
+ pip install pysimplesql --upgrade
45
+ ```
46
+ or
47
+ ```
48
+ pip3 install pysimplesql --upgrade
49
+ ```
50
+
36
51
### This Code
37
52
38
53
``` python
Original file line number Diff line number Diff line change @@ -377,4 +377,7 @@ while True:
377
377
break
378
378
else :
379
379
print (f ' This event ( { event} ) is not yet handled. ' )
380
- ```
380
+ ```
381
+ ![ v4] ( https://github.com/PySimpleSQL/pysimplesql/raw/master/examples/tutorial_files/Journal/v4/journal.png )
382
+ Now run the example again. You can now see that we are validating our expected date format using the simple callback
383
+ features of ** pysimplesql** !
Original file line number Diff line number Diff line change 7
7
import os .path
8
8
import random
9
9
from os import path
10
-
10
+ from update_checker import UpdateChecker
11
11
logger = logging .getLogger (__name__ )
12
12
13
+ # -------------------------
14
+ # Check for package updates
15
+ # -------------------------
16
+ version = '0.0.6'
17
+ checker = UpdateChecker ()
18
+ result = checker .check ('pysimplesql' , version )
19
+ if result is not None :
20
+ print (f'***** pysimplesql update to v{ result .available_version } available! Just run pip3 install pysimplesql --upgrade *****' )
21
+
13
22
# ---------------------------
14
23
# Types for automatic mapping
15
24
#----------------------------
Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ def readme():
12
12
13
13
setuptools .setup (
14
14
name = "pysimplesql" ,
15
- version = "0.0.5 " ,
15
+ version = "0.0.6 " ,
16
16
author = "Jonathan Decker" ,
17
17
18
18
description = "sqlite3 database binding for PySimpleGUI" ,
19
19
long_description = "Readme coming soon!" ,#readme(),
20
20
long_description_content_type = "text/markdown" ,
21
21
keywords = "SQL sqlite database application front-end access libre office GUI PySimpleGUI" ,
22
22
url = "https://github.com/PySimpleSQL/pysimplesql" ,
23
- download_url = "https://github.com/PySimpleSQL/pysimplesql/archive/refs/tags/0.0.5 .tar.gz" ,
23
+ download_url = "https://github.com/PySimpleSQL/pysimplesql/archive/refs/tags/0.0.6 .tar.gz" ,
24
24
packages = setuptools .find_packages (),
25
25
install_requires = requirements ,
26
26
classifiers = [
You can’t perform that action at this time.
0 commit comments