Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v5"
with:
python-version: 3.12
python-version: 3.13
- name: "Install dependencies"
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 7 additions & 7 deletions requirements/dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
black==24.3.0
flake8==7.0.0
isort==5.13.2
mypy==1.9.0
twine==5.0.0
wheel==0.43.0
setuptools==70.0.0
black==25.1.0
flake8==7.2.0
isort==6.0.1
mypy==1.15.0
twine==6.1.0
wheel==0.46.1
setuptools==80.7.1
4 changes: 2 additions & 2 deletions requirements/doc-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Sphinx==7.2.6
livereload==2.6.3
piccolo-theme==0.20.0
livereload==2.7.1
piccolo-theme==0.24.0
1 change: 0 additions & 1 deletion requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
colorama==0.4.*
docstring-parser>=0.12
typing_inspect>=0.6.0; python_version < '3.8'
6 changes: 3 additions & 3 deletions requirements/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
flake8==7.0.0
pytest-cov==4.1.0
pytest==8.1.1
flake8==7.2.0
pytest-cov==6.1.1
pytest==8.3.5
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
long_description_content_type="text/markdown",
author="Daniel Townsend",
author_email="dan@dantownsend.co.uk",
python_requires=">=3.8.0",
python_requires=">=3.9.0",
url="https://github.com/piccolo-orm/targ/",
packages=["targ"],
include_package_data=True,
Expand All @@ -40,11 +40,11 @@
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
],
)