ics-query 0.1.0a0__py3-none-any.whl → 0.1.dev8__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-0.1.0a0.dist-info → ics_query-0.1.dev8.dist-info}/METADATA +3 -84
- {ics_query-0.1.0a0.dist-info → ics_query-0.1.dev8.dist-info}/RECORD +6 -6
- {ics_query-0.1.0a0.dist-info → ics_query-0.1.dev8.dist-info}/WHEEL +0 -0
- {ics_query-0.1.0a0.dist-info → ics_query-0.1.dev8.dist-info}/entry_points.txt +0 -0
- {ics_query-0.1.0a0.dist-info → ics_query-0.1.dev8.dist-info}/licenses/LICENSE +0 -0
ics_query/_version.py
CHANGED
|
@@ -12,5 +12,5 @@ __version__: str
|
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
|
13
13
|
version_tuple: VERSION_TUPLE
|
|
14
14
|
|
|
15
|
-
__version__ = version = '0.1.
|
|
16
|
-
__version_tuple__ = version_tuple = (0, 1,
|
|
15
|
+
__version__ = version = '0.1.dev8'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 1, 'dev8')
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.dev8
|
|
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/3f1c4acd60666416eb899f7a0c07a05999d443c3.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
|
|
@@ -690,10 +690,7 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
690
690
|
Classifier: Intended Audience :: Developers
|
|
691
691
|
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
692
692
|
Classifier: Operating System :: OS Independent
|
|
693
|
-
Classifier: Programming Language :: Python :: 3
|
|
694
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
695
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
696
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
693
|
+
Classifier: Programming Language :: Python :: 3
|
|
697
694
|
Classifier: Topic :: Office/Business :: Scheduling
|
|
698
695
|
Requires-Python: >=3.8
|
|
699
696
|
Requires-Dist: click
|
|
@@ -790,86 +787,8 @@ Examples:
|
|
|
790
787
|
- There are x events today
|
|
791
788
|
- Please write a journal entry!
|
|
792
789
|
|
|
793
|
-
## Version Fixing
|
|
794
|
-
|
|
795
|
-
If you use this library in your code, you may want to make sure that
|
|
796
|
-
updates can be received but they do not break your code.
|
|
797
|
-
The version numbers are handeled this way: `a.b.c` example: `0.1.12`
|
|
798
|
-
|
|
799
|
-
- `c` is changed for each minor bug fix.
|
|
800
|
-
- `b` is changed whenever new features are added.
|
|
801
|
-
- `a` is changed when the interface or major assumptions change that may break your code.
|
|
802
|
-
|
|
803
|
-
So, I recommend to version-fix this library to stay with the same `a`
|
|
804
|
-
while `b` and `c` can change.
|
|
805
|
-
|
|
806
|
-
## Development
|
|
807
|
-
|
|
808
|
-
This section should set you up for development.
|
|
809
|
-
|
|
810
|
-
### Testing
|
|
811
|
-
|
|
812
|
-
This project's development is driven by tests.
|
|
813
|
-
Tests assure a consistent interface and less knowledge lost over time.
|
|
814
|
-
If you like to change the code, tests help that nothing breaks in the future.
|
|
815
|
-
They are required in that sense.
|
|
816
|
-
Example code and ics files can be transferred into tests and speed up fixing bugs.
|
|
817
|
-
|
|
818
|
-
You can view the tests in the [test folder](https://github.com/niccokunzmann/ics-query/tree/main/ics_query/tests)
|
|
819
|
-
If you have a calendar ICS file for which this library does not
|
|
820
|
-
generate the desired output, you can add it to the ``test/calendars``
|
|
821
|
-
folder and write tests for what you expect.
|
|
822
|
-
If you like, [open an issue](https://github.com/niccokunzmann/ics-query/issues) first, e.g. to discuss the changes and
|
|
823
|
-
how to go about it.
|
|
824
|
-
|
|
825
|
-
To run the tests, we use `tox`.
|
|
826
|
-
`tox` tests all different Python versions which we want to be compatible to.
|
|
827
|
-
|
|
828
|
-
```shell
|
|
829
|
-
pip3 install tox
|
|
830
|
-
```
|
|
831
|
-
|
|
832
|
-
To run all the tests:
|
|
833
|
-
|
|
834
|
-
```shell
|
|
835
|
-
tox
|
|
836
|
-
```
|
|
837
|
-
|
|
838
|
-
To run the tests in a specific Python version:
|
|
839
|
-
|
|
840
|
-
```shell
|
|
841
|
-
tox -e py39
|
|
842
|
-
```
|
|
843
|
-
|
|
844
|
-
We use ``ruff`` to format the code.
|
|
845
|
-
Run this to format the code and show problems:
|
|
846
|
-
|
|
847
|
-
```shell
|
|
848
|
-
tox -e ruff
|
|
849
|
-
```
|
|
850
|
-
|
|
851
|
-
## New Release
|
|
852
|
-
|
|
853
|
-
To release new versions,
|
|
854
|
-
|
|
855
|
-
1. edit the Changelog Section
|
|
856
|
-
2. create a commit and push it
|
|
857
|
-
3. wait for [GitHub Actions](https://github.com/niccokunzmann/ics-query/actions) to finish the build
|
|
858
|
-
4. create a tag and push it
|
|
859
|
-
|
|
860
|
-
```shell
|
|
861
|
-
git tag v0.1.0a
|
|
862
|
-
```
|
|
863
|
-
|
|
864
|
-
5. Notify the issues about their release
|
|
865
|
-
|
|
866
790
|
## Changelog
|
|
867
791
|
|
|
868
|
-
- v0.1.0a
|
|
869
|
-
|
|
870
|
-
- Update Python version compatibility
|
|
871
|
-
- Add development documentation
|
|
872
|
-
|
|
873
792
|
- v0.0.1a
|
|
874
793
|
|
|
875
794
|
- first version
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ics_query/__init__.py,sha256=YxyZzqxwfA77sBVFjUyUj3_fvR2gL3bs0pkE93prRFY,216
|
|
2
2
|
ics_query/__main__.py,sha256=E6Gls0DNz8GQK2K-kOUIx8cYhgANW_CH54VKrfCfs14,52
|
|
3
|
-
ics_query/_version.py,sha256=
|
|
3
|
+
ics_query/_version.py,sha256=lI2AbAnFrmlrT0e_rrLW0sxbHP3fZzYfncKr1OGEhdw,419
|
|
4
4
|
ics_query/cli.py,sha256=P6eLIH7hgbfwhbJHloilHS9ut_YDjEP_QDabLTf0NQs,2367
|
|
5
5
|
ics_query/parse.py,sha256=6bCKtY39jr2NFSsqspVyGn32pwn6bMoEqJMHE26Ap1o,261
|
|
6
6
|
ics_query/version.py,sha256=LgqmHh_dcmWi9HMxfWJ8OhfmbzWsBTq3h08jIE18pYM,468
|
|
@@ -9,8 +9,8 @@ ics_query/tests/conftest.py,sha256=A6R9pB3emaSo1DAIxyt-5QhWPq8LbsOoWJIRIsku2Zk,2
|
|
|
9
9
|
ics_query/tests/test_command_line.py,sha256=bIJp2SCVW8MXF_lNZ1ol9A-r9Y_9zjnY2jhdTJET59g,283
|
|
10
10
|
ics_query/tests/runs/at 2019-03-04 one-event.ics -.run,sha256=GVVmVpqzFjQLw2_RuhxnVTpCnwflNqeWbkFZ6u5WXxA,226
|
|
11
11
|
ics_query/tests/runs/calendars/one-event.ics,sha256=-uwohttEzg-jsTETNb6tQ5dO9PE3DXzlicwRiXJs1KQ,725
|
|
12
|
-
ics_query-0.1.
|
|
13
|
-
ics_query-0.1.
|
|
14
|
-
ics_query-0.1.
|
|
15
|
-
ics_query-0.1.
|
|
16
|
-
ics_query-0.1.
|
|
12
|
+
ics_query-0.1.dev8.dist-info/METADATA,sha256=5jVr-o3Elo_hWgEjN-t3GFB5fAd65JSyw23Tp2JvBZc,43902
|
|
13
|
+
ics_query-0.1.dev8.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
14
|
+
ics_query-0.1.dev8.dist-info/entry_points.txt,sha256=Jq_39vCKVOkNZjL7Wngf_04V_n_QRszLgLT2CbJKiH4,49
|
|
15
|
+
ics_query-0.1.dev8.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
16
|
+
ics_query-0.1.dev8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|