File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -250,6 +250,9 @@ Original development was at GreenKahuna (now defunct.)
250
250
251
251
# Releases
252
252
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
+
253
256
# ## 0.3.5 - Nov 26, 2021
254
257
Adds more default user agents to bring things into the present day. [issue](https:// github.com/ skoczen/ django- seo- js/ pull/ 41 ).
255
258
Original file line number Diff line number Diff line change 1
- VERSION = "0.3.5 "
1
+ VERSION = "0.4.0 "
Original file line number Diff line number Diff line change @@ -23,7 +23,10 @@ def tag_release():
23
23
24
24
25
25
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/*" )
27
30
28
31
29
32
def release ():
@@ -73,5 +76,5 @@ def deploy_docs():
73
76
local ("git commit -m 'Auto-update of docs: %s'" % last_commit )
74
77
local ("git push" )
75
78
else :
76
- print "No changes to the docs."
79
+ print ( "No changes to the docs." )
77
80
local ("git checkout %s" % current_branch )
Original file line number Diff line number Diff line change 1
- fabric
1
+ fabric<2
2
2
httmock
3
3
mock
4
4
nose
5
5
pep8
6
- tox
6
+ tox
7
+ twine<2
You can’t perform that action at this time.
0 commit comments