ics-query 0.0.1a0__tar.gz → 0.1.dev8__tar.gz
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-0.0.1a0 → ics_query-0.1.dev8}/.github/workflows/tests.yml +13 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.gitignore +0 -1
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/PKG-INFO +2 -2
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/_version.py +2 -2
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/FUNDING.yml +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/dependabot.yml +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/LICENSE +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/README.md +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/__init__.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/__main__.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/cli.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/parse.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/__init__.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/conftest.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/runs/at 2019-03-04 one-event.ics -.run +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/runs/calendars/one-event.ics +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/test_command_line.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/version.py +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/pyproject.toml +0 -0
- {ics_query-0.0.1a0 → ics_query-0.1.dev8}/tox.ini +0 -0
|
@@ -72,6 +72,18 @@ jobs:
|
|
|
72
72
|
run: |
|
|
73
73
|
python -m pip install --upgrade pip
|
|
74
74
|
pip install --upgrade wheel twine build
|
|
75
|
+
# - name: Check the tag
|
|
76
|
+
# run: |
|
|
77
|
+
# PACKAGE_VERSION=`python setup.py --version`
|
|
78
|
+
# TAG_NAME=v$PACKAGE_VERSION
|
|
79
|
+
# echo "Package version $PACKAGE_VERSION with possible tag name $TAG_NAME on $GITHUB_REF_NAME"
|
|
80
|
+
# # test that the tag represents the version
|
|
81
|
+
# # see https://docs.gitlab.com/ee/ci/variables/predefined_variables.html
|
|
82
|
+
# # see https://docs.github.com/en/actions/learn-github-actions/environment-variables
|
|
83
|
+
# if [ "$TAG_NAME" != "$GITHUB_REF_NAME" ]; then
|
|
84
|
+
# echo "ERROR: This tag is for the wrong version. Got \"$GITHUB_REF_NAME\" expected \"$TAG_NAME\"."
|
|
85
|
+
# exit 1
|
|
86
|
+
# fi
|
|
75
87
|
- name: remove old files
|
|
76
88
|
run: rm -rf dist/*
|
|
77
89
|
- name: build distribution files
|
|
@@ -101,6 +113,7 @@ jobs:
|
|
|
101
113
|
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
|
|
102
114
|
needs:
|
|
103
115
|
- run-tests
|
|
116
|
+
- dockerhub
|
|
104
117
|
- deploy-tag-to-pypi
|
|
105
118
|
runs-on: ubuntu-latest
|
|
106
119
|
steps:
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: ics-query
|
|
3
|
-
Version: 0.
|
|
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
|
|
@@ -12,5 +12,5 @@ __version__: str
|
|
|
12
12
|
__version_tuple__: VERSION_TUPLE
|
|
13
13
|
version_tuple: VERSION_TUPLE
|
|
14
14
|
|
|
15
|
-
__version__ = version = '0.
|
|
16
|
-
__version_tuple__ = version_tuple = (0,
|
|
15
|
+
__version__ = version = '0.1.dev8'
|
|
16
|
+
__version_tuple__ = version_tuple = (0, 1, 'dev8')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/runs/at 2019-03-04 one-event.ics -.run
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|