ics-query 0.3.4__py3-none-any.whl → 0.4.13__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.
- ics_query/_version.py +2 -2
- ics_query/version.py +4 -0
- {ics_query-0.3.4.dist-info → ics_query-0.4.13.dist-info}/METADATA +19 -10
- {ics_query-0.3.4.dist-info → ics_query-0.4.13.dist-info}/RECORD +7 -7
- {ics_query-0.3.4.dist-info → ics_query-0.4.13.dist-info}/WHEEL +1 -1
- {ics_query-0.3.4.dist-info → ics_query-0.4.13.dist-info}/entry_points.txt +0 -0
- {ics_query-0.3.4.dist-info → ics_query-0.4.13.dist-info}/licenses/LICENSE +0 -0
ics_query/_version.py
CHANGED
ics_query/version.py
CHANGED
|
@@ -18,6 +18,7 @@ try:
|
|
|
18
18
|
except ModuleNotFoundError:
|
|
19
19
|
__version__ = version = "0.0dev0"
|
|
20
20
|
__version_tuple__ = version_tuple = (0, 0, "dev0")
|
|
21
|
+
import sys
|
|
21
22
|
from importlib.metadata import version as get_version
|
|
22
23
|
|
|
23
24
|
cli_version = f"""{__version__}
|
|
@@ -40,6 +41,9 @@ for module in modules:
|
|
|
40
41
|
except ModuleNotFoundError: # noqa: PERF203
|
|
41
42
|
cli_version += f"{module}: not installed\n"
|
|
42
43
|
|
|
44
|
+
cli_version += f"""
|
|
45
|
+
Python: {sys.version}"""
|
|
46
|
+
|
|
43
47
|
__all__ = [
|
|
44
48
|
"__version__",
|
|
45
49
|
"version",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.13
|
|
4
4
|
Summary: Find out what happens in ICS calendar files - query and filter RFC 5545 compatible .ics files for events, journals, TODOs and more.
|
|
5
5
|
Project-URL: Homepage, https://github.com/niccokunzmann/ics-query/
|
|
6
6
|
Project-URL: Repository, https://github.com/niccokunzmann/ics-query/
|
|
7
|
-
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/
|
|
7
|
+
Project-URL: source_archive, https://github.com/niccokunzmann/ics-query/archive/8e7c78d06b7132ad56a68b41be287cf94ed66bd4.zip
|
|
8
8
|
Project-URL: Issues, https://github.com/niccokunzmann/ics-query/issues
|
|
9
9
|
Project-URL: Documentation, https://github.com/niccokunzmann/ics-query/
|
|
10
10
|
Project-URL: Changelog, https://github.com/niccokunzmann/ics-query/#changelog
|
|
@@ -684,7 +684,6 @@ License: GNU GENERAL PUBLIC LICENSE
|
|
|
684
684
|
the library. If this is what you want to do, use the GNU Lesser General
|
|
685
685
|
Public License instead of this License. But first, please read
|
|
686
686
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
|
687
|
-
License-File: LICENSE
|
|
688
687
|
Keywords: calendar,command line,icalendar,ics,rfc5545,scheduling
|
|
689
688
|
Classifier: Development Status :: 5 - Production/Stable
|
|
690
689
|
Classifier: Intended Audience :: Developers
|
|
@@ -697,13 +696,13 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
697
696
|
Classifier: Topic :: Office/Business :: Scheduling
|
|
698
697
|
Requires-Python: >=3.9
|
|
699
698
|
Requires-Dist: click==8.1.7
|
|
700
|
-
Requires-Dist: icalendar==6.
|
|
699
|
+
Requires-Dist: icalendar==6.1.0
|
|
701
700
|
Requires-Dist: python-dateutil==2.9.0.post0
|
|
702
|
-
Requires-Dist: recurring-ical-events==3.3.
|
|
703
|
-
Requires-Dist: six==1.
|
|
701
|
+
Requires-Dist: recurring-ical-events==3.3.4
|
|
702
|
+
Requires-Dist: six==1.17.0
|
|
704
703
|
Requires-Dist: tzdata==2024.2
|
|
705
704
|
Requires-Dist: tzlocal==5.2
|
|
706
|
-
Requires-Dist: x-wr-timezone==
|
|
705
|
+
Requires-Dist: x-wr-timezone==2.0.0
|
|
707
706
|
Provides-Extra: test
|
|
708
707
|
Requires-Dist: pytest; extra == 'test'
|
|
709
708
|
Description-Content-Type: text/markdown
|
|
@@ -1078,7 +1077,12 @@ tox -e ruff
|
|
|
1078
1077
|
|
|
1079
1078
|
### New Release
|
|
1080
1079
|
|
|
1081
|
-
|
|
1080
|
+
Renovate updates the dependencies automatically on the `main` branch.
|
|
1081
|
+
New commits on `main` are automatically published with an increased
|
|
1082
|
+
PATCH version number.
|
|
1083
|
+
|
|
1084
|
+
To release a new version with a new MINOR or MAJOR version number change,
|
|
1085
|
+
follow these steps:
|
|
1082
1086
|
|
|
1083
1087
|
1. edit the Changelog Section
|
|
1084
1088
|
2. create a commit and push it
|
|
@@ -1086,8 +1090,8 @@ To release new versions,
|
|
|
1086
1090
|
4. create a tag and push it
|
|
1087
1091
|
|
|
1088
1092
|
```shell
|
|
1089
|
-
git tag v0.1.
|
|
1090
|
-
git push origin v0.1.
|
|
1093
|
+
git tag v0.1.0
|
|
1094
|
+
git push origin v0.1.0
|
|
1091
1095
|
```
|
|
1092
1096
|
|
|
1093
1097
|
5. Notify the issues about their release
|
|
@@ -1098,6 +1102,11 @@ We automatically release the versions that only update dependencies.
|
|
|
1098
1102
|
If the version you installed does not show up here, only the dependencies
|
|
1099
1103
|
have been updated.
|
|
1100
1104
|
|
|
1105
|
+
- v0.4.1
|
|
1106
|
+
|
|
1107
|
+
- Automatic release with patch level version number increased
|
|
1108
|
+
- Increase patch version instead of minor version for automatic releases
|
|
1109
|
+
|
|
1101
1110
|
- v0.3.4
|
|
1102
1111
|
|
|
1103
1112
|
- Update dependencies
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
ics_query/__init__.py,sha256=BBd-FYDFf3jY_ApkMRkivqGti2uMeP4OT6KtgZDixic,917
|
|
2
2
|
ics_query/__main__.py,sha256=1rFDbZZcd6llmQ-X_611jWdrua4HMOnpOclKRvf03Us,737
|
|
3
|
-
ics_query/_version.py,sha256=
|
|
3
|
+
ics_query/_version.py,sha256=CFuc-aF-6TJ_yWHzHDWOwdlzy7d7BONHRXrZprCFoYY,413
|
|
4
4
|
ics_query/cli.py,sha256=VPXcSCjtaWZJtSzMsHqLfcTgStnJsoyY9K8Q0VZUs3o,19993
|
|
5
5
|
ics_query/parse.py,sha256=AO2TBoe98exzfzTKsoF5ZAvJOg3hN2qRpP15DAQKZaM,2415
|
|
6
6
|
ics_query/query.py,sha256=9HSSWJ1y7avU6mRDXBQKKTkk9oeG9qEwhr3k0piHbaU,2692
|
|
7
|
-
ics_query/version.py,sha256=
|
|
7
|
+
ics_query/version.py,sha256=ByXlZC-vAOZfkpZfh05KiLVnOH8IcSrQzylVZmjcnpA,1518
|
|
8
8
|
ics_query/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
ics_query/tests/conftest.py,sha256=MmxzXtpXHN3pf8jDmVGXvxcNXfepRwrJ03EF68zRSrY,3668
|
|
10
10
|
ics_query/tests/test_command_line.py,sha256=mB_v-WqjpYRcxtROdi7GfvUGTEHYZ-3Z-sWevp7lFYc,2524
|
|
@@ -37,8 +37,8 @@ ics_query/tests/runs/calendars/recurring-work-events.ics,sha256=4ASS_-xZl2pVv1kZ
|
|
|
37
37
|
ics_query/tests/runs/calendars/simple-journal.ics,sha256=U6_YMQM6EHwPDaszWgJDo-pR4WIqbJx8CRlHg4iu9zA,457
|
|
38
38
|
ics_query/tests/runs/calendars/simple-todo.ics,sha256=l9uHQD4eyiCE8STvd2tj5lAVaBrqUtpF_M8Pv6yf1es,327
|
|
39
39
|
ics_query/tests/runs/calendars/three-events.ics,sha256=YvPfthOzMCR0DQhGR6uj_1Bltgax3uA1ETlkI4JUI08,828
|
|
40
|
-
ics_query-0.
|
|
41
|
-
ics_query-0.
|
|
42
|
-
ics_query-0.
|
|
43
|
-
ics_query-0.
|
|
44
|
-
ics_query-0.
|
|
40
|
+
ics_query-0.4.13.dist-info/METADATA,sha256=AjryEI2YLwExkmCcqsUQod4QCfuMMwV5wNy8Tz6SV0U,54751
|
|
41
|
+
ics_query-0.4.13.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
42
|
+
ics_query-0.4.13.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
43
|
+
ics_query-0.4.13.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
44
|
+
ics_query-0.4.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|