mirror of
https://github.com/andrewthetechie/py-healthchecks.io.git
synced 2026-04-17 12:35:35 +02:00
Compare commits
72 Commits
v0.4.3
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39e98d0dd5 | ||
|
|
956f9c77b0 | ||
|
|
162797b339 | ||
|
|
0617e87836 | ||
|
|
2a738721f7 | ||
|
|
e716d9655f | ||
|
|
05413c55c4 | ||
|
|
2d4b8f77a1 | ||
|
|
e4a42b5fba | ||
|
|
23210159a2 | ||
|
|
2b6835315e | ||
|
|
f4c75a7019 | ||
|
|
d755edaba9 | ||
|
|
a7a58b227b | ||
|
|
e99868ea89 | ||
|
|
dfd12b788e | ||
|
|
6bfa9cd706 | ||
|
|
b2b2b0f09e | ||
|
|
5adb0e1173 | ||
|
|
de4fdc7b6a | ||
|
|
e64dbf8dfd | ||
|
|
2cfe5d18f9 | ||
|
|
3a7c763157 | ||
|
|
24884ec045 | ||
|
|
eecca2265a | ||
|
|
2cfa474093 | ||
|
|
c3e10b1e0d | ||
|
|
65b996e3f4 | ||
|
|
876741fe16 | ||
|
|
32c30445b9 | ||
|
|
282646e25b | ||
|
|
1aaa0549f2 | ||
|
|
9c2cde0159 | ||
|
|
7091a2a138 | ||
|
|
5108b4317f | ||
|
|
4f8bb6b9a4 | ||
|
|
10af98dcdd | ||
|
|
aadeceb327 | ||
|
|
37c780e865 | ||
|
|
e1a81aa145 | ||
|
|
305e72ead2 | ||
|
|
dd305ed93f | ||
|
|
c8aba10262 | ||
|
|
c4fa6e7ac3 | ||
|
|
7641446884 | ||
|
|
c4a73b1a57 | ||
|
|
5113322177 | ||
|
|
d9d67f2e0b | ||
|
|
e7756fbf28 | ||
|
|
4f0cd0b56e | ||
|
|
bf610095cb | ||
|
|
7a3c8d0a56 | ||
|
|
14fb13b075 | ||
|
|
b2448021be | ||
|
|
97b62b6005 | ||
|
|
86fd192f95 | ||
|
|
4de0f1ac2f | ||
|
|
02c3739c38 | ||
|
|
3ca1d33d7c | ||
|
|
ed43967801 | ||
|
|
08bf505f70 | ||
|
|
e88be9e88f | ||
|
|
95b93e857b | ||
|
|
483ad538bc | ||
|
|
90e150f049 | ||
|
|
f64e81fa0c | ||
|
|
277f7b5395 | ||
|
|
6262bf2a5a | ||
|
|
92b31dcb3d | ||
|
|
8e3d977abd | ||
|
|
af20f3bc11 | ||
|
|
3d49ae3b99 |
8
.github/workflows/constraints.txt
vendored
8
.github/workflows/constraints.txt
vendored
@@ -1,6 +1,6 @@
|
||||
pip==24.1.1
|
||||
nox==2024.4.15
|
||||
pip==24.2
|
||||
nox==2024.10.9
|
||||
nox-poetry==1.0.3
|
||||
poetry==1.8.3
|
||||
virtualenv==20.26.3
|
||||
poetry==1.8.4
|
||||
virtualenv==20.27.1
|
||||
toml==0.10.2
|
||||
|
||||
2
.github/workflows/labeler.yml
vendored
2
.github/workflows/labeler.yml
vendored
@@ -13,6 +13,6 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run Labeler
|
||||
uses: crazy-max/ghaction-github-labeler@v5.0.0
|
||||
uses: crazy-max/ghaction-github-labeler@v5.1.0
|
||||
with:
|
||||
skip-delete: true
|
||||
|
||||
4
.github/workflows/pre-release.yml
vendored
4
.github/workflows/pre-release.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5.1.0
|
||||
uses: actions/setup-python@v5.3.0
|
||||
with:
|
||||
python-version: "3.10"
|
||||
|
||||
@@ -34,7 +34,7 @@ jobs:
|
||||
poetry build --ansi
|
||||
|
||||
- name: Publish package on TestPyPI
|
||||
uses: pypa/gh-action-pypi-publish@v1.9.0
|
||||
uses: pypa/gh-action-pypi-publish@v1.10.3
|
||||
with:
|
||||
user: __token__
|
||||
password: ${{ secrets.TEST_PYPI_TOKEN }}
|
||||
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
with:
|
||||
fetch-depth: 2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5.1.0
|
||||
uses: actions/setup-python@v5.3.0
|
||||
with:
|
||||
python-version: "3.11"
|
||||
- name: Install pip and poetry
|
||||
|
||||
4
.github/workflows/tests.yml
vendored
4
.github/workflows/tests.yml
vendored
@@ -31,7 +31,7 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python ${{ matrix.python }}
|
||||
uses: actions/setup-python@v5.1.0
|
||||
uses: actions/setup-python@v5.3.0
|
||||
with:
|
||||
python-version: ${{ matrix.python }}
|
||||
|
||||
@@ -60,7 +60,7 @@ jobs:
|
||||
fh.write(f"result={result}\n")
|
||||
|
||||
- name: Restore pre-commit cache
|
||||
uses: actions/cache@v4.0.2
|
||||
uses: actions/cache@v4.1.2
|
||||
if: matrix.session == 'pre-commit'
|
||||
with:
|
||||
path: ~/.cache/pre-commit
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
furo==2024.5.6
|
||||
sphinx==7.3.7
|
||||
furo==2024.8.6
|
||||
sphinx==8.1.3
|
||||
|
||||
686
poetry.lock
generated
686
poetry.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -28,8 +28,8 @@ Changelog = "https://github.com/andrewthetechie/py-healthchecks.io/releases"
|
||||
python = "^3.8"
|
||||
pydantic = ">=1.9.1,<3.0.0"
|
||||
httpx = ">=0.23.0,<0.28.0"
|
||||
croniter = ">=1.1,<3.0"
|
||||
pytz = ">=2024.1,<2025.0"
|
||||
croniter = ">=1.1,<4.0"
|
||||
pytz = ">=2024.1,<2026.0"
|
||||
packaging = "^24.1"
|
||||
|
||||
[tool.poetry.group.dev.dependencies]
|
||||
@@ -46,14 +46,14 @@ pre-commit-hooks = "^4.4.0"
|
||||
pyupgrade = "^3.3.1"
|
||||
furo = ">=2021.11.12"
|
||||
pytest-cov = ">=4,<6"
|
||||
types-croniter = ">=1.3.2,<3.0.0"
|
||||
types-croniter = ">=1.3.2,<4.0.0"
|
||||
types-pytz = ">=2022.7.1,<2025.0.0"
|
||||
pytest-asyncio = ">=0.20.3,<0.24.0"
|
||||
respx = ">=0.20.1,<0.22.0"
|
||||
pytest-mock = "^3.10.0"
|
||||
pytest-lazy-fixture = "^0.6.3"
|
||||
pytest-xdist = "^3.2.0"
|
||||
ruff = ">=0.5.0,<0.5.1"
|
||||
ruff = ">=0.5.1,<0.6.9"
|
||||
bandit = "^1.7.4"
|
||||
|
||||
[tool.coverage.paths]
|
||||
|
||||
Reference in New Issue
Block a user