Skip to content

Commit c6f7863

Browse files
committed
Update README, fab file and requirements
1 parent c26df6d commit c6f7863

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,9 @@ Original development was at GreenKahuna (now defunct.)
250250

251251
# Releases
252252

253+
### 0.4.0 - Nov 26, 2021
254+
Adds support for Django 4.1. [issue](https://github.com/skoczen/django-seo-js/pull/42).
255+
253256
### 0.3.5 - Nov 26, 2021
254257
Adds more default user agents to bring things into the present day. [issue](https://github.com/skoczen/django-seo-js/pull/41).
255258

django_seo_js/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.3.5"
1+
VERSION = "0.4.0"

fabfile.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ def tag_release():
2323

2424

2525
def upload_release():
26-
local("python setup.py sdist upload")
26+
local("python setup.py sdist")
27+
local("python setup.py bdist_wheel --universal")
28+
local("twine upload dist/*")
29+
local("rm dist/*")
2730

2831

2932
def release():
@@ -73,5 +76,5 @@ def deploy_docs():
7376
local("git commit -m 'Auto-update of docs: %s'" % last_commit)
7477
local("git push")
7578
else:
76-
print "No changes to the docs."
79+
print("No changes to the docs.")
7780
local("git checkout %s" % current_branch)

requirements.tests.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
fabric
1+
fabric<2
22
httmock
33
mock
44
nose
55
pep8
6-
tox
6+
tox
7+
twine<2

0 commit comments

Comments
 (0)