Skip to content

Commit

Permalink
Filter out Python unit tests
Browse files Browse the repository at this point in the history
Don't include unit tests in the binary package
being built.
  • Loading branch information
rseichter committed Mar 9, 2024
1 parent bdd6cd9 commit 7e263cc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog
=========

Release 1.9.1 (TBA)

- Filter out Python unit tests during packaging.

Release 1.9.0 (2024-03-08)

- The logic for on_update* has been largely rewritten. As a user-visible side effect, detailed
Expand Down
2 changes: 1 addition & 1 deletion docs/fangfrisch.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Fangfrisch
Ralph Seichter <fangfrisch@seichter.de>
v1.9.0, {docdate}
v1.9.1.dev1, {docdate}
:copyright: © 2020-2024 Ralph Seichter
:encoding: UTF-8
:hyphens: en
Expand Down
2 changes: 1 addition & 1 deletion fangfrisch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
You should have received a copy of the GNU General Public License
along with Fangfrisch. If not, see <https://www.gnu.org/licenses/>.
"""
__version__ = '1.9.0'
__version__ = '1.9.1.dev1'


class ClamavItem:
Expand Down
7 changes: 6 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ project_urls =
Source = https://github.com/rseichter/fangfrisch
Tracker = https://github.com/rseichter/fangfrisch/issues
url = https://github.com/rseichter/fangfrisch
version = 1.9.0
version = 1.9.1.dev1

[options.packages.find]
exclude =
tests
tests.*

[options]
install_requires =
Expand Down

0 comments on commit 7e263cc

Please sign in to comment.