Skip to content

Commit f45993d

Browse files
committed
Include project files in sdist
1 parent 41a78f1 commit f45993d

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

Diff for: CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Release 4.1 (14/03/2023)
2+
==========================
3+
4+
* Include ``tests/``, ``AUTHORS``, ``CHANGES.rst``, and ``LICENCE`` in the
5+
source distribution ('sdist') file. No changes to functionality.
6+
17
Release 4.0 (14/03/2023)
28
==========================
39

Diff for: pyproject.toml

+8
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,13 @@ name = "Adam Turner"
4545
[tool.flit.module]
4646
name = "sphinxcontrib.jquery"
4747

48+
[tool.flit.sdist]
49+
include = [
50+
"AUTHORS",
51+
"CHANGES.rst",
52+
"LICENCE",
53+
"tests/",
54+
]
55+
4856
[tool.coverage.run]
4957
source = ["sphinxcontrib.jquery"]

Diff for: sphinxcontrib/jquery/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
import sphinx
55

6-
__version__ = "4.0"
7-
version_info = (4, 0)
6+
__version__ = "4.1"
7+
version_info = (4, 1)
88

99
_ROOT_DIR = path.abspath(path.dirname(__file__))
1010
_FILES = (

0 commit comments

Comments
 (0)