Skip to content

Commit

Permalink
Include project files in sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Mar 14, 2023
1 parent 41a78f1 commit f45993d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Release 4.1 (14/03/2023)
==========================

* Include ``tests/``, ``AUTHORS``, ``CHANGES.rst``, and ``LICENCE`` in the
source distribution ('sdist') file. No changes to functionality.

Release 4.0 (14/03/2023)
==========================

Expand Down
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,13 @@ name = "Adam Turner"
[tool.flit.module]
name = "sphinxcontrib.jquery"

[tool.flit.sdist]
include = [
"AUTHORS",
"CHANGES.rst",
"LICENCE",
"tests/",
]

[tool.coverage.run]
source = ["sphinxcontrib.jquery"]
4 changes: 2 additions & 2 deletions sphinxcontrib/jquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

import sphinx

__version__ = "4.0"
version_info = (4, 0)
__version__ = "4.1"
version_info = (4, 1)

_ROOT_DIR = path.abspath(path.dirname(__file__))
_FILES = (
Expand Down

0 comments on commit f45993d

Please sign in to comment.