Skip to content

Commit 2378158

Browse files
authored
Merge pull request #47 from aidentified-llc/sec-20250620
Package updates
2 parents c343e6e + 12c38cd commit 2378158

File tree

7 files changed

+41
-39
lines changed

7 files changed

+41
-39
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

.github/workflows/pre-commit.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ jobs:
99
pre-commit:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-python@v4
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.9"
15+
python-version: "3.10"
1616
# - name: set PY
1717
# run: echo "::set-env name=PY::$(python --version --version | sha256sum | cut -d' ' -f1)"
1818
# - uses: actions/cache@v1
1919
# with:
2020
# path: ~/.cache/pre-commit
2121
# key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}
22-
- uses: pre-commit/action@v2.0.3
22+
- uses: pre-commit/action@v3.0.1
2323
with:
2424
token: ${{ secrets.GITHUB_TOKEN }}

.pre-commit-config.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.5.0
3+
rev: v5.0.0
44
hooks:
55
- id: check-symlinks
66
# - id: check-executables-have-shebangs
@@ -23,19 +23,19 @@ repos:
2323
- id: fix-byte-order-marker
2424
- id: mixed-line-ending
2525
- repo: https://github.com/asottile/reorder_python_imports
26-
rev: v3.12.0
26+
rev: v3.15.0
2727
hooks:
2828
- id: reorder-python-imports
2929
- repo: https://github.com/psf/black
30-
rev: 24.3.0
30+
rev: 25.1.0
3131
hooks:
3232
- id: black
33-
language_version: python3.9
33+
language_version: python3.10
3434
args: ['-l', '88']
3535
# Run flake8 last, to catch any remaining issues not caught/fixed by
3636
# the other hooks.
3737
- repo: https://github.com/pycqa/flake8
38-
rev: 7.0.0
38+
rev: 7.2.0
3939
hooks:
4040
- id: flake8
4141
exclude: ^manage.py$

aidentified_matching_api/dataset_file.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ async def rewrite_csv(
188188
out_bytes_fd.seek(0)
189189
out_bytes_fd.truncate()
190190

191-
logger.info(f"Putting upload part {part_idx+1}")
191+
logger.info(f"Putting upload part {part_idx + 1}")
192192
await part_queue.put((part_idx, out_buf[:part_size_bytes]))
193193
out_buf = out_buf[part_size_bytes:]
194194
part_idx += 1
195195

196196
if len(out_buf) > 0:
197-
logger.info(f"Putting final upload part {part_idx+1}")
197+
logger.info(f"Putting final upload part {part_idx + 1}")
198198
await part_queue.put((part_idx, out_buf))
199199

200200

requirements-dev.txt

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,27 @@ build==1.2.2.post1
1010
# via
1111
# -r requirements-dev.in
1212
# pip-tools
13-
certifi==2024.12.14
13+
certifi==2025.6.15
1414
# via requests
1515
cfgv==3.4.0
1616
# via pre-commit
17-
charset-normalizer==3.4.1
17+
charset-normalizer==3.4.2
1818
# via requests
19-
click==8.1.8
19+
click==8.2.1
2020
# via pip-tools
2121
distlib==0.3.9
2222
# via virtualenv
2323
docutils==0.21.2
2424
# via readme-renderer
25-
filelock==3.16.1
25+
filelock==3.18.0
2626
# via virtualenv
27-
identify==2.6.5
27+
id==1.5.0
28+
# via twine
29+
identify==2.6.12
2830
# via pre-commit
2931
idna==3.10
3032
# via requests
31-
iniconfig==2.0.0
33+
iniconfig==2.1.0
3234
# via pytest
3335
jaraco-classes==3.4.0
3436
# via keyring
@@ -42,67 +44,67 @@ markdown-it-py==3.0.0
4244
# via rich
4345
mdurl==0.1.2
4446
# via markdown-it-py
45-
more-itertools==10.5.0
47+
more-itertools==10.7.0
4648
# via
4749
# jaraco-classes
4850
# jaraco-functools
49-
nh3==0.2.20
51+
nh3==0.2.21
5052
# via readme-renderer
5153
nodeenv==1.9.1
5254
# via pre-commit
53-
packaging==24.2
55+
packaging==25.0
5456
# via
5557
# build
5658
# pytest
5759
# twine
5860
pip-tools==7.4.1
5961
# via -r requirements-dev.in
60-
pkginfo==1.12.0
61-
# via twine
62-
platformdirs==4.3.6
62+
platformdirs==4.3.8
6363
# via virtualenv
64-
pluggy==1.5.0
64+
pluggy==1.6.0
6565
# via pytest
66-
pre-commit==4.0.1
66+
pre-commit==4.2.0
6767
# via -r requirements-dev.in
6868
pygments==2.19.1
6969
# via
70+
# pytest
7071
# readme-renderer
7172
# rich
7273
pyproject-hooks==1.2.0
7374
# via
7475
# build
7576
# pip-tools
76-
pytest==8.3.4
77+
pytest==8.4.1
7778
# via -r requirements-dev.in
7879
pyyaml==6.0.2
7980
# via pre-commit
8081
readme-renderer==44.0
8182
# via twine
82-
requests==2.32.3
83+
requests==2.32.4
8384
# via
8485
# -r /Users/david/src/matching-api-cli/requirements.in
86+
# id
8587
# requests-toolbelt
8688
# twine
8789
requests-toolbelt==1.0.0
8890
# via twine
8991
rfc3986==2.0.0
9092
# via twine
91-
rich==13.9.4
93+
rich==14.0.0
9294
# via twine
93-
twine==6.0.1
95+
twine==6.1.0
9496
# via -r requirements-dev.in
95-
urllib3==2.3.0
97+
urllib3==2.5.0
9698
# via
9799
# requests
98100
# twine
99-
virtualenv==20.28.1
101+
virtualenv==20.31.2
100102
# via pre-commit
101103
wheel==0.45.1
102104
# via pip-tools
103105

104106
# The following packages are considered to be unsafe in a requirements file:
105-
pip==24.3.1
107+
pip==25.1.1
106108
# via pip-tools
107-
setuptools==75.8.0
109+
setuptools==80.9.0
108110
# via pip-tools

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
#
77
appdirs==1.4.4
88
# via -r requirements.in
9-
certifi==2024.12.14
9+
certifi==2025.6.15
1010
# via requests
11-
charset-normalizer==3.4.1
11+
charset-normalizer==3.4.2
1212
# via requests
1313
idna==3.10
1414
# via requests
15-
requests==2.32.3
15+
requests==2.32.4
1616
# via -r requirements.in
17-
urllib3==2.3.0
17+
urllib3==2.5.0
1818
# via requests

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"Programming Language :: Python :: 3",
2626
],
2727
packages=["aidentified_matching_api"],
28-
python_requires=">=3.9",
28+
python_requires=">=3.10",
2929
# Let's not force all the hard requirements out from requirements.txt
3030
# in case people are installing this thing into their system Pythons.
3131
install_requires=requirements,

0 commit comments

Comments
 (0)