pysportbot 0.0.14__tar.gz → 0.0.15__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.
- {pysportbot-0.0.14 → pysportbot-0.0.15}/PKG-INFO +2 -2
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pyproject.toml +10 -10
- {pysportbot-0.0.14 → pysportbot-0.0.15}/LICENSE +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/README.md +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/activities.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/authenticator.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/bookings.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/centres.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/endpoints.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/__main__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/booking.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/config_loader.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/config_validator.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/scheduling.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/service.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/service/threading.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/session.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/utils/__init__.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/utils/errors.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/utils/logger.py +0 -0
- {pysportbot-0.0.14 → pysportbot-0.0.15}/pysportbot/utils/time.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: pysportbot
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.15
|
4
4
|
Summary: A python-based bot for automatic resasports slot booking
|
5
5
|
Author: Joshua Falco Beirer
|
6
6
|
Author-email: jbeirer@cern.ch
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
12
12
|
Classifier: Programming Language :: Python :: 3.13
|
13
13
|
Requires-Dist: beautifulsoup4 (>=4.13.3,<5.0.0)
|
14
14
|
Requires-Dist: pandas (>=2.2.3,<3.0.0)
|
15
|
-
Requires-Dist: pytz (>=2025.
|
15
|
+
Requires-Dist: pytz (>=2025.2,<2026.0)
|
16
16
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
17
17
|
Description-Content-Type: text/markdown
|
18
18
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "pysportbot"
|
3
|
-
version = "v0.0.
|
3
|
+
version = "v0.0.15"
|
4
4
|
description = "A python-based bot for automatic resasports slot booking"
|
5
5
|
authors = [
|
6
6
|
{ name = "Joshua Falco Beirer", email = "jbeirer@cern.ch" }
|
@@ -18,26 +18,26 @@ python = ">=3.10,<3.14"
|
|
18
18
|
requests = "^2.32.3"
|
19
19
|
beautifulsoup4 = "^4.13.3"
|
20
20
|
pandas = "^2.2.3"
|
21
|
-
pytz = "^2025.
|
21
|
+
pytz = "^2025.2"
|
22
22
|
|
23
23
|
[tool.poetry.group.dev.dependencies]
|
24
|
-
pytest = "^8.3.
|
24
|
+
pytest = "^8.3.5"
|
25
25
|
pytest-cov = "^6.0.0"
|
26
26
|
deptry = "^0.23.0"
|
27
27
|
mypy = "^1.15.0"
|
28
|
-
pre-commit = "^4.
|
29
|
-
tox = "^4.24.
|
28
|
+
pre-commit = "^4.2.0"
|
29
|
+
tox = "^4.24.2"
|
30
30
|
ipykernel = "^6.29.5"
|
31
|
-
types-pytz = "^2025.1.0.
|
32
|
-
types-requests = "^2.32.0.
|
31
|
+
types-pytz = "^2025.1.0.20250318"
|
32
|
+
types-requests = "^2.32.0.20250306"
|
33
33
|
|
34
34
|
[tool.poetry.group.docs.dependencies]
|
35
35
|
mkdocs = "^1.6.1"
|
36
|
-
mkdocs-material = "^9.6.
|
37
|
-
mkdocstrings = {extras = ["python"], version = "^0.
|
36
|
+
mkdocs-material = "^9.6.9"
|
37
|
+
mkdocstrings = {extras = ["python"], version = "^0.29.0"}
|
38
38
|
|
39
39
|
[build-system]
|
40
|
-
requires = ["poetry-core>=2.
|
40
|
+
requires = ["poetry-core>=2.1.1"]
|
41
41
|
build-backend = "poetry.core.masonry.api"
|
42
42
|
|
43
43
|
[tool.black]
|
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
|