File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -34,12 +34,11 @@ jobs:
34
34
env :
35
35
POETRY_VIRTUALENVS_CREATE : false
36
36
steps :
37
- - uses : actions/checkout@v3
38
- - uses : actions/setup-python@v4
37
+ - uses : actions/checkout@v4
38
+ - uses : actions/setup-python@v5
39
39
with :
40
40
python-version : ${{ matrix.python-version }}
41
- - run : pip install poetry
42
- - run : poetry install
41
+ - run : pip install -e '.[dev]'
43
42
- run : poetry build --format wheel
44
43
- name : Make sure tests use dist instead of source
45
44
run : |
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools" , " wheel" ]
3
+ build-backend = " setuptools.build_meta"
4
+
1
5
[project ]
2
6
name = " django-object-actions"
3
7
version = " 4.3.0"
4
8
description = " A Django app for adding object tools for models in the admin"
5
9
authors = [{ name = " crccheck" , email = " c@crccheck.com" }]
6
10
license = { text = " Apache-2.0" }
7
11
readme = " README.md"
8
- # repository = "https://github.com/crccheck/django-object-actions"
9
12
keywords = [" django" , " admin" ]
10
13
classifiers = [
11
14
" Development Status :: 5 - Production/Stable" ,
@@ -21,6 +24,9 @@ classifiers = [
21
24
" Programming Language :: Python :: 3.13" ,
22
25
]
23
26
27
+ [project .urls ]
28
+ "Homepage" = " https://github.com/crccheck/django-object-actions"
29
+
24
30
[project .optional-dependencies ]
25
31
dev = [
26
32
" coverage==7.*" ,
@@ -29,14 +35,15 @@ dev = [
29
35
" dj-database-url==2.*" ,
30
36
" ruff" ,
31
37
]
38
+ build = [" build" , " twine" ]
32
39
33
40
[tool .setuptools ]
34
41
packages = [" django_object_actions" ]
35
42
36
43
[tool .semantic_release ]
37
44
version_toml = [" pyproject.toml:project.version" ]
38
45
version_variables = [" django_object_actions/__init__.py:__version__" ]
39
- build_command = " pip build"
46
+ build_command = " python -m build"
40
47
41
48
[tool .coverage .run ]
42
49
source = [" django_object_actions" ]
You can’t perform that action at this time.
0 commit comments