Skip to content

Commit

Permalink
Use setuptools-scm to build package (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
dyve authored Dec 28, 2023
1 parent 696eb99 commit 8646eab
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 23.5 (2023-12-28)

- Use setuptools-scm to build package (#424).

## 23.4 (2023-12-24)

- Use ruff instead of black for formatting (#419).
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ publish: porcelain branch build
git push origin --tags

.PHONY: clean
clean: docs
clean:
rm -rf build dist src/*.egg-info .coverage*

.PHONY: version
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
requires = ["setuptools>=64", "setuptools_scm>=8"]

[project]
authors = [
Expand Down Expand Up @@ -34,7 +34,7 @@ license = {file = "LICENSE"}
name = "django-icons"
readme = "README.md"
requires-python = ">=3.8"
version = "23.4"
version = "23.5dev0"

[project.urls]
Changelog = "https://github.com/zostera/django-icons/blob/main/CHANGELOG.md"
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
twine==4.0.2
build==1.0.3
setuptools==69.0.3
setuptools_scm==8.0.4
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tox==4.11.4
coverage==7.3.4
coverage==7.4.0
ruff==0.1.9

0 comments on commit 8646eab

Please sign in to comment.