seabirdfilehandler 0.4.1__tar.gz → 0.4.3__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 seabirdfilehandler might be problematic. Click here for more details.

@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: seabirdfilehandler
3
- Version: 0.4.1
3
+ Version: 0.4.3
4
4
  Summary: Library of parsers to interact with SeaBird CTD files.
5
5
  Keywords: CTD,parser,seabird,data
6
6
  Author: Emil Michels
7
7
  Author-email: <emil.michels@io-warnemuende.de>
8
- Requires-Python: >=3.12,<3.13
8
+ Requires-Python: >=3.12
9
9
  Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10
10
  Classifier: Development Status :: 3 - Alpha
11
11
  Classifier: Operating System :: OS Independent
@@ -13,7 +13,8 @@ Classifier: Intended Audience :: Science/Research
13
13
  Classifier: Topic :: Scientific/Engineering :: Oceanography
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
15
  Classifier: Programming Language :: Python :: 3.12
16
- Requires-Dist: pandas (>=2.1.1,<2.2)
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Requires-Dist: pandas (>=2.2.1)
17
18
  Requires-Dist: xmltodict (>=0.13.0)
18
19
  Project-URL: Homepage, https://git.io-warnemuende.de/CTD-Software/SeabirdFileHandler
19
20
  Project-URL: Repository, https://git.io-warnemuende.de/CTD-Software/SeabirdFileHandler
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "seabirdfilehandler"
3
- version = "0.4.1"
3
+ version = "0.4.3"
4
4
  description = "Library of parsers to interact with SeaBird CTD files."
5
5
  authors = [
6
6
  { name = "Emil Michels", email = "<emil.michels@io-warnemuende.de>" },
@@ -15,34 +15,31 @@ classifiers = [
15
15
  "Topic :: Scientific/Engineering :: Oceanography",
16
16
  "Programming Language :: Python :: 3 :: Only",
17
17
  "Programming Language :: Python :: 3.12",
18
+ "Programming Language :: Python :: 3.13",
18
19
  ]
19
20
  urls.homepage = "https://git.io-warnemuende.de/CTD-Software/SeabirdFileHandler"
20
21
  urls.repository = "https://git.io-warnemuende.de/CTD-Software/SeabirdFileHandler"
21
22
 
22
23
  [tool.poetry.dependencies]
23
- python = ">=3.12, <3.13"
24
- # with version 2.2 pandas introduced a new dependency that is not strictly
25
- # necessary but bloats the package by a factor of 2 to about 170 MB
26
- pandas = ">=2.1.1, <2.2"
24
+ python = ">=3.12"
25
+ pandas = ">=2.2.1"
27
26
  xmltodict = ">=0.13.0"
28
27
 
29
28
  [tool.poetry.group.dev.dependencies]
30
- pytest = ">=7.4.2"
29
+ pytest = ">=8.3.0"
31
30
  pytest-xdist = ">=3.6.1"
32
- pytest-cov = "^6.0.0"
31
+ pytest-cov = ">=6.0.0"
33
32
  parameterized = ">=0.9.0"
34
- sphinx = ">=7.2.6"
33
+ sphinx = ">=8.2.3"
35
34
  sphinx-rtd-theme = ">=1.3.0"
36
35
  sphinx-autodoc-typehints = ">=1.24.1"
37
36
  pyment = ">=0.3.3"
38
37
  pylint = ">=3.0.2"
39
- twine = ">=4.0.2"
40
38
  pre-commit = ">=3.6.2"
41
39
  tomlkit = ">=0.13.2"
42
40
 
43
41
  [tool.pytest.ini_options]
44
42
  pythonpath = [".", "src", "src/seabirdfilehandler"]
45
- addopts = '-n auto --cov=seabirdfilehandler --log-format="%(asctime)s %(levelname)s %(message)s" --log-date-format="%Y-%m-%d %H:%M:%S"'
46
43
  filterwarnings = [
47
44
  "error",
48
45
  "ignore::UserWarning",
@@ -54,9 +51,12 @@ filterwarnings = [
54
51
  [tool.coverage.run]
55
52
  omit = ["tests/*"]
56
53
 
57
- [tool.black]
54
+ [tool.ruff]
58
55
  line-length = 79
59
56
 
57
+ [tool.ruff.lint]
58
+ ignore = ["F403", "F821"]
59
+
60
60
  [build-system]
61
61
  requires = ["poetry-core"]
62
62
  build-backend = "poetry.core.masonry.api"