Skip to content

Commit 3765be1

Browse files
committed
Preparing release 4.1.0
1 parent 2946fe7 commit 3765be1

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

CHANGES.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
4.1.0 (unreleased)
4+
4.1.0 (2025-11-06)
55
------------------
66

77
- Add support for Python 3.14.

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def read(filename):
2626
version=version,
2727
author='Marius Gedminas',
2828
author_email='[email protected]',
29-
license='GPL v2 or v3',
29+
license='GPL-3.0-or-later',
3030
platforms=['any'],
3131
url=homepage,
3232
description='Convert IRC logs to HTML',
@@ -35,8 +35,6 @@ def read(filename):
3535
classifiers=[
3636
'Development Status :: 4 - Beta',
3737
'Intended Audience :: System Administrators',
38-
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
39-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
4038
'Operating System :: OS Independent',
4139
'Programming Language :: Python :: 3.10',
4240
'Programming Language :: Python :: 3.11',
@@ -53,7 +51,7 @@ def read(filename):
5351
]),
5452
packages=['irclog2html'],
5553
package_dir={'': 'src'},
56-
include_package_data=True,
54+
package_data={'irclog2html': ['*.css']},
5755
entry_points="""
5856
[console_scripts]
5957
irclog2html = irclog2html.irclog2html:main

src/irclog2html/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '4.1.0.dev0'
1+
__version__ = '4.1.0'
22
__date__ = '2025-11-06'
33
__homepage__ = 'https://mg.pov.lt/irclog2html/'

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist = py310, py311, py312, py313, py314, pypy3, flake8
33

44
[testenv]
5+
use_develop = true
56
deps =
67
zope.testrunner
78
extras =

0 commit comments

Comments
 (0)