Skip to content

Commit e019311

Browse files
authored
Merge pull request #176 from bckohan/v3.x.x
fix #175
2 parents 053b9bc + f66bda2 commit e019311

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

doc/source/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
Change Log
33
==========
44

5+
v3.2.1 (2024-02-17)
6+
====================
7+
8+
* Fixed `webdriver-manager included as non-dev dependency in 3.2.0 <https://github.com/bckohan/django-render-static/issues/175>`_
9+
10+
511
v3.2.0 (2024-02-17)
612
====================
713

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[project]
66
name = "django-render-static"
7-
version = "3.2.0"
7+
version = "3.2.1"
88
description = "Use Django's template engine to render static files at deployment or package time. Includes transpilers for extending Django's url reversal and enums to JavaScript."
99
requires-python = ">=3.9,<4.0"
1010
authors = [
@@ -18,8 +18,7 @@ homepage = "https://django-render-static.readthedocs.io"
1818
keywords = ["django", "static", "templates", "javascript", "url", "reverse", "defines", "transpiler", "transpile", "enum"]
1919
dependencies = [
2020
"Django>=3.2,<6.0",
21-
"django-typer>=3.0,<3.1",
22-
"webdriver-manager (>=4.0.2,<5.0.0)"
21+
"django-typer>=3.0,<3.1"
2322
]
2423
classifiers = [
2524
"Environment :: Console",
@@ -87,6 +86,7 @@ pyright = {extras = ["nodejs"], version = "^1.1.357"}
8786
ruff = "^0.9"
8887
django-stubs = {extras = ["compatible-mypy"], version = ">=5.0.2"}
8988
pre-commit = "^4.0.1"
89+
webdriver-manager = "^4.0.2"
9090

9191

9292
[tool.poetry.group.docs]

render_static/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
"""
99

10-
VERSION = (3, 2, 0)
10+
VERSION = (3, 2, 1)
1111

1212
__title__ = "Django Render Static"
1313
__version__ = ".".join(str(i) for i in VERSION)

0 commit comments

Comments
 (0)