pjdev-postgres 4.4.2__tar.gz → 4.5.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.
@@ -1,22 +1,22 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pjdev-postgres
3
- Version: 4.4.2
3
+ Version: 4.5.0
4
4
  Project-URL: Documentation, https://gitlab.purplejay.net/keystone/python/-/tree/main/keystone-postgres/README.md
5
5
  Project-URL: Issues, https://gitlab.purplejay.net/keystone/python/-/issues
6
6
  Project-URL: Source, https://gitlab.purplejay.net/keystone/python
7
- Author-email: Purple Jay LLC <it@purplejay.io>
7
+ Author-email: Purple Jay LLC <developers@purplejay.io>
8
8
  License-Expression: MIT
9
9
  License-File: LICENSE.txt
10
10
  Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Programming Language :: Python
12
- Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
13
13
  Classifier: Programming Language :: Python :: Implementation :: CPython
14
14
  Classifier: Programming Language :: Python :: Implementation :: PyPy
15
- Requires-Python: >=3.12
15
+ Requires-Python: >=3.13
16
16
  Requires-Dist: loguru
17
- Requires-Dist: psycopg[binary,pool]>=3.1.19
18
- Requires-Dist: pydantic-settings>=2.3.1
19
- Requires-Dist: sqlmodel>=0.0.19
17
+ Requires-Dist: psycopg[binary,pool]>=3.2.6
18
+ Requires-Dist: pydantic-settings>=2.8.1
19
+ Requires-Dist: sqlmodel>=0.0.24
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: ruff; extra == 'dev'
22
22
  Provides-Extra: test
@@ -7,23 +7,23 @@ name = "pjdev-postgres"
7
7
  dynamic = ["version"]
8
8
  description = ''
9
9
  readme = "README.md"
10
- requires-python = ">=3.12"
10
+ requires-python = ">=3.13"
11
11
  license = "MIT"
12
12
  keywords = []
13
13
  authors = [
14
- { name = "Purple Jay LLC", email = "it@purplejay.io" },
14
+ { name = "Purple Jay LLC", email = "developers@purplejay.io" },
15
15
  ]
16
16
  classifiers = [
17
17
  "Development Status :: 4 - Beta",
18
18
  "Programming Language :: Python",
19
- "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
20
  "Programming Language :: Python :: Implementation :: CPython",
21
21
  "Programming Language :: Python :: Implementation :: PyPy",
22
22
  ]
23
23
  dependencies = [
24
- "pydantic-settings>=2.3.1",
25
- "sqlmodel>=0.0.19",
26
- "psycopg[binary,pool]>=3.1.19",
24
+ "pydantic-settings>=2.8.1",
25
+ "sqlmodel>=0.0.24",
26
+ "psycopg[binary,pool]>=3.2.6",
27
27
  "loguru"
28
28
  ]
29
29
 
@@ -64,7 +64,7 @@ cov = [
64
64
  ]
65
65
 
66
66
  [[tool.hatch.envs.all.matrix]]
67
- python = ["3.12"]
67
+ python = ["3.13"]
68
68
 
69
69
  [tool.hatch.envs.types]
70
70
  dependencies = [
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2024-present Chris O'Neill <chris@purplejay.io>
2
2
  #
3
3
  # SPDX-License-Identifier: MIT
4
- __version__ = "4.4.2"
4
+ __version__ = "4.5.0"
@@ -1,5 +1,5 @@
1
1
  #!/bin/bash
2
-
2
+ uv sync --active --extra test
3
3
  export PYTHONPATH=./src:./tests
4
4
  #coverage run -m pytest tests
5
5
  pytest tests/*.py -vv
@@ -1,5 +1,5 @@
1
1
  ============================= test session starts ==============================
2
- platform linux -- Python 3.12.3, pytest-8.3.5, pluggy-1.5.0 -- /venv/bin/python3
2
+ platform linux -- Python 3.13.2, pytest-8.3.5, pluggy-1.6.0 -- /venv/bin/python
3
3
  cachedir: .pytest_cache
4
4
  rootdir: /builds/keystone/python/pjdev-postgres
5
5
  configfile: pyproject.toml
@@ -7,4 +7,4 @@ collecting ... collected 1 item
7
7
 
8
8
  tests/tests_for_history.py::test_history_item_is_created_and_saved PASSED [100%]
9
9
 
10
- ============================== 1 passed in 0.65s ===============================
10
+ ============================== 1 passed in 0.79s ===============================
File without changes