geopic-tag-reader 1.1.4__tar.gz → 1.1.5__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.
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/.gitlab-ci.yml +15 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/CHANGELOG.md +8 -1
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/PKG-INFO +1 -1
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/__init__.py +1 -1
- geopic_tag_reader-1.1.5/geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/translations/en/LC_MESSAGES/geopic_tag_reader.po +2 -2
- geopic_tag_reader-1.1.5/geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.mo +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/translations/geopic_tag_reader.pot +1 -1
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/pyproject.toml +1 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/.gitignore +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/.pre-commit-config.yaml +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/CODE_OF_CONDUCT.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/LICENSE +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/Makefile +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/README.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/docs/develop.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/docs/index.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/docs/install.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/docs/tech/api_reference.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/docs/tech/cli.md +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/camera.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/i18n.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/main.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/model.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/py.typed +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/reader.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/translations/fr/LC_MESSAGES/geopic_tag_reader.po +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/geopic_tag_reader/writer.py +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/mkdocs.yml +0 -0
- {geopic_tag_reader-1.1.4 → geopic_tag_reader-1.1.5}/pytest.ini +0 -0
|
@@ -38,6 +38,21 @@ tests-writer:
|
|
|
38
38
|
- make i18n-po2code
|
|
39
39
|
- pytest -s -vv
|
|
40
40
|
|
|
41
|
+
tests-deploy_pypi:
|
|
42
|
+
stage: deploy
|
|
43
|
+
image: python:3.8
|
|
44
|
+
variables:
|
|
45
|
+
FLIT_INDEX_URL: https://test.pypi.org/legacy/
|
|
46
|
+
FLIT_USERNAME: $TEST_FLIT_USERNAME
|
|
47
|
+
FLIT_PASSWORD: $TEST_FLIT_PASSWORD
|
|
48
|
+
script:
|
|
49
|
+
- apt update && apt install -y gcc git gettext
|
|
50
|
+
- pip install .[build]
|
|
51
|
+
- make i18n-po2code
|
|
52
|
+
- flit publish
|
|
53
|
+
only:
|
|
54
|
+
- develop
|
|
55
|
+
|
|
41
56
|
deploy_pypi:
|
|
42
57
|
stage: deploy
|
|
43
58
|
image: python:3.8
|
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.1.5] - 2024-07-10
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- PyPI package was missing built translation files (MO files).
|
|
15
|
+
|
|
10
16
|
## [1.1.4] - 2024-07-10
|
|
11
17
|
|
|
12
18
|
### Changed
|
|
@@ -193,7 +199,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
193
199
|
|
|
194
200
|
- EXIF tag reading methods extracted from [GeoVisio API](https://gitlab.com/panoramax/server/api)
|
|
195
201
|
|
|
196
|
-
[Unreleased]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.
|
|
202
|
+
[Unreleased]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.5...main
|
|
203
|
+
[1.1.5]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.4...1.1.5
|
|
197
204
|
[1.1.4]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.3...1.1.4
|
|
198
205
|
[1.1.3]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.2...1.1.3
|
|
199
206
|
[1.1.2]: https://gitlab.com/panoramax/server/geo-picture-tag-reader/-/compare/1.1.1...1.1.2
|
|
Binary file
|
|
@@ -7,8 +7,8 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"POT-Creation-Date: 2024-07-10
|
|
11
|
-
"PO-Revision-Date: 2024-07-10
|
|
10
|
+
"POT-Creation-Date: 2024-07-10 13:05+0200\n"
|
|
11
|
+
"PO-Revision-Date: 2024-07-10 13:05+0200\n"
|
|
12
12
|
"Last-Translator: Automatically generated\n"
|
|
13
13
|
"Language-Team: none\n"
|
|
14
14
|
"Language: en\n"
|
|
Binary file
|
|
@@ -8,7 +8,7 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: PACKAGE VERSION\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2024-07-10
|
|
11
|
+
"POT-Creation-Date: 2024-07-10 13:05+0200\n"
|
|
12
12
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
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
|
|
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
|