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.
Files changed (21) hide show
  1. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/workflows/tests.yml +13 -0
  2. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.gitignore +0 -1
  3. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/PKG-INFO +2 -2
  4. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/_version.py +2 -2
  5. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/FUNDING.yml +0 -0
  6. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  7. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/.github/dependabot.yml +0 -0
  8. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/LICENSE +0 -0
  9. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/README.md +0 -0
  10. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/__init__.py +0 -0
  11. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/__main__.py +0 -0
  12. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/cli.py +0 -0
  13. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/parse.py +0 -0
  14. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/__init__.py +0 -0
  15. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/conftest.py +0 -0
  16. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/runs/at 2019-03-04 one-event.ics -.run +0 -0
  17. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/runs/calendars/one-event.ics +0 -0
  18. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/tests/test_command_line.py +0 -0
  19. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/ics_query/version.py +0 -0
  20. {ics_query-0.0.1a0 → ics_query-0.1.dev8}/pyproject.toml +0 -0
  21. {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:
@@ -160,4 +160,3 @@ cython_debug/
160
160
  # and can be added to the global gitignore or merged into this file. For a more nuclear
161
161
  # option (not recommended) you can uncomment the following to ignore the entire idea folder.
162
162
  #.idea/
163
- ics_query/_version.py
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ics-query
3
- Version: 0.0.1a0
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/754b78b76c0b93d42a1271b332f4a59ee9872bcd.zip
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.0.1a0'
16
- __version_tuple__ = version_tuple = (0, 0, 1)
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