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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygnss
3
- Version: 0.2.0
3
+ Version: 0.3.0
4
4
  Summary: Package with utilities for GNSS data processing
5
5
  Author: Miquel Garcia
6
6
  Author-email: miquel.garcia@rokubun.cat
@@ -0,0 +1 @@
1
+ __version__ = "0.3.0"
@@ -0,0 +1,4 @@
1
+ SPEED_OF_LIGHT = 299792458 # in vacuum [m/s]
2
+
3
+ EARTH_GRAVITATION_PARAM_MU = 3.986005e14
4
+ EARTH_ROTATION_RATE = 7.2921151466999996e-05
@@ -2,7 +2,7 @@ from enum import Enum
2
2
  from dataclasses import dataclass
3
3
  from typing import List
4
4
 
5
- from roktools.constants import SPEED_OF_LIGHT
5
+ from ..constants import SPEED_OF_LIGHT
6
6
  from roktools.decorator import deprecated
7
7
 
8
8
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pygnss"
3
- version = "0.2.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
- version_variable = [
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"
@@ -1 +0,0 @@
1
- __version__ = "0.1.0"
File without changes
File without changes
File without changes
File without changes
File without changes