Skip to content

Commit 753830c

Browse files
committed
Update pyproject.toml for poetry 2
1 parent bc6f7e5 commit 753830c

File tree

3 files changed

+67
-25
lines changed

3 files changed

+67
-25
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
python-version: ["3.10.x", "3.11.x", "3.12.x"]
9-
django-version: ["5.0.x", "5.1.x"]
9+
django-version: ["5.0.0", "5.1.0"]
1010
runs-on: ubuntu-latest
1111

1212
services:
@@ -37,7 +37,7 @@ jobs:
3737
- name: Initialize environment
3838
run: |
3939
poetry install
40-
poetry add django==${{ matrix.django-version }}
40+
poetry add django@~${{ matrix.django-version }}
4141
4242
- name: Run pre-test checks
4343
run: poetry run ./code_check.py --debug

poetry.lock

+45-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+20-16
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,23 @@
1-
[tool.poetry]
1+
[project]
22
name = "smartmin"
33
version = "5.1.1"
44
description = "Scaffolding system for Django object management."
5-
authors = ["Nyaruka Ltd <[email protected]>"]
5+
license = { text = "BSD" }
6+
authors = [
7+
{"name" = "TextIt", "email" = "[email protected]"}
8+
]
69
readme = "README.md"
7-
license = "BSD"
8-
classifiers=[
10+
requires-python = ">=3.10,<3.13"
11+
dependencies = [
12+
"Django (>= 5.0,< 5.2)",
13+
"celery (>=5.1)",
14+
"redis (>=3.5.3)",
15+
"sqlparse (>=0.4.1,<0.6.0)",
16+
"xlrd (>=1.2.0)",
17+
"xlwt (>=1.3.0)",
18+
]
19+
20+
classifiers = [
921
"Development Status :: 5 - Production/Stable",
1022
"Environment :: Web Environment",
1123
"Intended Audience :: Developers",
@@ -18,19 +30,11 @@ packages = [
1830
{ include = "smartmin" },
1931
]
2032

21-
[tool.poetry.urls]
33+
[project.urls]
2234
repository = "http://github.com/nyaruka/smartmin"
2335

24-
[tool.poetry.dependencies]
25-
python = "^3.10"
26-
Django = ">= 5.0, < 5.2"
27-
celery = ">= 5.1"
28-
redis = ">= 3.5.3"
29-
sqlparse = ">=0.4.1,<0.6.0"
30-
xlrd = "^1.2.0"
31-
xlwt = "^1.3.0"
3236

33-
[tool.poetry.dev-dependencies]
37+
[tool.poetry.group.dev.dependencies]
3438
black = "^24.3.0"
3539
coverage = {extras = ["toml"], version = "^7.2.7"}
3640
isort = "^5.12.0"
@@ -62,5 +66,5 @@ known_django = ["django"]
6266
source = ["smartmin"]
6367

6468
[build-system]
65-
requires = ["poetry-core>=1.0.0"]
66-
build-backend = "poetry.core.masonry.api"
69+
requires = ["poetry-core>=2.0.0,<3.0.0"]
70+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)