Skip to content

Commit 64bf1cc

Browse files
authored
update requirements (#33)
1 parent ccb88b6 commit 64bf1cc

File tree

7 files changed

+16
-17
lines changed

7 files changed

+16
-17
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: "actions/checkout@v3"
1515
- uses: "actions/setup-python@v5"
1616
with:
17-
python-version: 3.12
17+
python-version: 3.13
1818
- name: "Install dependencies"
1919
run: |
2020
python -m pip install --upgrade pip

.github/workflows/tests.yaml

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

1616
steps:
1717
- uses: actions/checkout@v4

requirements/dev-requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
black==24.3.0
2-
flake8==7.0.0
3-
isort==5.13.2
4-
mypy==1.9.0
5-
twine==5.0.0
6-
wheel==0.43.0
7-
setuptools==70.0.0
1+
black==25.1.0
2+
flake8==7.2.0
3+
isort==6.0.1
4+
mypy==1.15.0
5+
twine==6.1.0
6+
wheel==0.46.1
7+
setuptools==80.7.1

requirements/doc-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Sphinx==7.2.6
2-
livereload==2.6.3
3-
piccolo-theme==0.20.0
2+
livereload==2.7.1
3+
piccolo-theme==0.24.0

requirements/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
colorama==0.4.*
22
docstring-parser>=0.12
3-
typing_inspect>=0.6.0; python_version < '3.8'

requirements/test-requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
flake8==7.0.0
2-
pytest-cov==4.1.0
3-
pytest==8.1.1
1+
flake8==7.2.0
2+
pytest-cov==6.1.1
3+
pytest==8.3.5

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
long_description_content_type="text/markdown",
3131
author="Daniel Townsend",
3232
author_email="[email protected]",
33-
python_requires=">=3.8.0",
33+
python_requires=">=3.9.0",
3434
url="https://github.com/piccolo-orm/targ/",
3535
packages=["targ"],
3636
include_package_data=True,
@@ -40,11 +40,11 @@
4040
"License :: OSI Approved :: MIT License",
4141
"Programming Language :: Python",
4242
"Programming Language :: Python :: 3",
43-
"Programming Language :: Python :: 3.8",
4443
"Programming Language :: Python :: 3.9",
4544
"Programming Language :: Python :: 3.10",
4645
"Programming Language :: Python :: 3.11",
4746
"Programming Language :: Python :: 3.12",
47+
"Programming Language :: Python :: 3.13",
4848
"Programming Language :: Python :: Implementation :: CPython",
4949
],
5050
)

0 commit comments

Comments
 (0)