Skip to content

Commit a134009

Browse files
committed
Cosmetic changes and bump version to 4.1.1.
The changes are just to follow the toml format more closely. The main point of this commit is to synchronize the version information that appears in different files, and make sure that we have a higher number than any previous one (since we used to have a 4.1.0-beta), so it is clear that this is the latest one, and we are out of beta.
1 parent 8b0519f commit a134009

3 files changed

Lines changed: 15 additions & 16 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.2
1+
4.1.1

ete4/version.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
#autogenerated during release process. Do not modify
2-
__version__='4.0.0-beta'
1+
__version__='4.1.1'

pyproject.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "ete4"
77
description = "A Python Environment for (phylogenetic) Tree Exploration"
8-
version = "4.0.2"
8+
version = "4.1.1"
99
authors = [
10-
{ name="Jaime Huerta-Cepas", email="jhcepas@gmail.com" },
11-
{ name="Jordi Burguet-Castell", email="jordi.burguet.castell@gmail.com" },
10+
{ name = "Jaime Huerta-Cepas", email = "jhcepas@gmail.com" },
11+
{ name = "Jordi Burguet-Castell", email = "jordi.burguet.castell@gmail.com" },
1212
]
1313
readme = "README.md"
1414
license = "GPL-3.0-or-later"
15-
license-files = ["LICENSE"]
15+
license-files = [ "LICENSE" ]
1616
requires-python = ">=3.7"
1717
classifiers = [
1818
"Programming Language :: Python :: 3",
@@ -30,7 +30,7 @@ classifiers = [
3030
"Topic :: Scientific/Engineering :: Visualization",
3131
"Topic :: Software Development :: Libraries :: Python Modules",
3232
]
33-
dependencies = ["bottle", "brotli", "numpy", "scipy", "requests"]
33+
dependencies = [ "bottle", "brotli", "numpy", "scipy", "requests" ]
3434

3535
[project.urls]
3636
"Homepage" = "http://etetoolkit.org"
@@ -39,15 +39,15 @@ dependencies = ["bottle", "brotli", "numpy", "scipy", "requests"]
3939
ete4 = "ete4.tools.ete:main"
4040

4141
[project.optional-dependencies]
42-
treeview = ["pyqt6"]
43-
render_sm = ["selenium"]
44-
treediff = ["lap"]
45-
test = ["pytest>=6.0"]
46-
doc = ["sphinx"]
42+
treeview = [ "pyqt6" ]
43+
render_sm = [ "selenium" ]
44+
treediff = [ "lap" ]
45+
test = [ "pytest>=6.0" ]
46+
doc = [ "sphinx" ]
4747

4848
[tool.setuptools]
4949
ext-modules = [
50-
{name="ete4.core.tree", sources=["ete4/core/tree.pyx"]},
51-
{name="ete4.core.operations", sources=["ete4/core/operations.pyx"]},
52-
{name="ete4.parser.newick", sources=["ete4/parser/newick.pyx"]},
50+
{ name = "ete4.core.tree", sources = [ "ete4/core/tree.pyx" ] },
51+
{ name = "ete4.core.operations", sources = [ "ete4/core/operations.pyx" ] },
52+
{ name = "ete4.parser.newick", sources = [ "ete4/parser/newick.pyx" ] },
5353
]

0 commit comments

Comments
 (0)