File tree Expand file tree Collapse file tree 5 files changed +20
-4
lines changed Expand file tree Collapse file tree 5 files changed +20
-4
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ build :
3
+ os : ubuntu-22.04
4
+ tools :
5
+ python : " 3.9"
6
+
7
+ python :
8
+ install :
9
+ - method : pip
10
+ path : .
11
+
12
+ sphinx :
13
+ configuration : docs/conf.py
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ These steps need to happen by a release maintainer.
90
90
To make a release, the following needs to happen:
91
91
92
92
- Make sure that ``setup.cfg `` is set up properly w/r/t Python and Django requirements
93
+ - Make sure the documentation (``docs/index.rst ``) also describes the right Python/Django versions
93
94
- Bump the version number in ``taggit/__init__.py ``
94
95
- Update the changelog (making sure to add the (Unreleased) section to the top)
95
96
- Get those changes onto the ``master `` branch
Original file line number Diff line number Diff line change
1
+ import taggit
2
+
1
3
extensions = ["sphinx.ext.intersphinx" ]
2
4
3
5
master_doc = "index"
6
8
copyright = "Alex Gaynor and individual contributors."
7
9
8
10
# The short X.Y version.
9
- version = "1.3"
11
+ version = taggit . __version__
10
12
# The full version, including alpha/beta/rc tags.
11
- release = "1.3.0"
13
+ release = taggit . __version__
12
14
13
15
intersphinx_mapping = {
14
16
"django" : (
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Welcome to django-taggit's documentation!
4
4
``django-taggit `` is a reusable Django application designed to make adding
5
5
tagging to your project easy and fun.
6
6
7
- ``django-taggit `` works with Django 2.2 + and Python 3.6 +.
7
+ ``django-taggit `` works with Django 4.1 + and Python 3.8 +.
8
8
9
9
.. toctree ::
10
10
:maxdepth: 2
Original file line number Diff line number Diff line change 1
- VERSION = (5 , 0 , 0 )
1
+ VERSION = (5 , 0 , 1 )
2
2
__version__ = "." .join (str (i ) for i in VERSION )
You can’t perform that action at this time.
0 commit comments