pygnss 0.2.0__tar.gz → 0.3.0__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.
Potentially problematic release.
This version of pygnss might be problematic. Click here for more details.
- {pygnss-0.2.0 → pygnss-0.3.0}/PKG-INFO +1 -1
- pygnss-0.3.0/pygnss/__init__.py +1 -0
- pygnss-0.3.0/pygnss/constants.py +4 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/pygnss/gnss/types.py +1 -1
- {pygnss-0.2.0 → pygnss-0.3.0}/pyproject.toml +5 -2
- pygnss-0.2.0/pygnss/__init__.py +0 -1
- {pygnss-0.2.0 → pygnss-0.3.0}/LICENSE +0 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/README.md +0 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/pygnss/gnss/__init__.py +0 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/pygnss/gnss/edit.py +0 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/pygnss/gnss/observables.py +0 -0
- {pygnss-0.2.0 → pygnss-0.3.0}/pygnss/helpers.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.0"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pygnss"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
description = "Package with utilities for GNSS data processing"
|
|
5
5
|
authors = ["Miquel Garcia <miquel.garcia@rokubun.cat>"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -18,7 +18,7 @@ pytest-mocha = "^0.4.0"
|
|
|
18
18
|
python-semantic-release = "^9.4.0"
|
|
19
19
|
|
|
20
20
|
[tool.semantic_release]
|
|
21
|
-
|
|
21
|
+
version_variables = [
|
|
22
22
|
"pygnss/__init__.py:__version__"
|
|
23
23
|
]
|
|
24
24
|
version_toml = [
|
|
@@ -29,6 +29,9 @@ upload_to_pypi = true
|
|
|
29
29
|
upload_to_release = true
|
|
30
30
|
build_command = "pip install poetry && poetry build"
|
|
31
31
|
|
|
32
|
+
[tool.semantic_release.changelog]
|
|
33
|
+
exclude_commit_patterns = ["build", "ci", "doc", "chore"]
|
|
34
|
+
|
|
32
35
|
[build-system]
|
|
33
36
|
requires = ["poetry-core"]
|
|
34
37
|
build-backend = "poetry.core.masonry.api"
|
pygnss-0.2.0/pygnss/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|