Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-newick
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dlce-eva
python-newick
Commits
ae0a53d8
Commit
ae0a53d8
authored
4 months ago
by
Robert Forkel
Browse files
Options
Downloads
Patches
Plain Diff
release 1.10.0
parent
9411ddee
Loading
Loading
No related merge requests found
Pipeline
#243304
passed
4 months ago
Stage: test
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+3
-2
3 additions, 2 deletions
CHANGELOG.md
CONTRIBUTING.md
+0
-13
0 additions, 13 deletions
CONTRIBUTING.md
RELEASING.md
+1
-1
1 addition, 1 deletion
RELEASING.md
setup.cfg
+1
-2
1 addition, 2 deletions
setup.cfg
src/newick.py
+1
-1
1 addition, 1 deletion
src/newick.py
with
6 additions
and
19 deletions
CHANGELOG.md
+
3
−
2
View file @
ae0a53d8
...
@@ -2,9 +2,10 @@
...
@@ -2,9 +2,10 @@
The
`newick`
package adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
.
The
`newick`
package adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
.
##
Unreleased
##
[v1.10.0] - 2025-03-13
Dropped Python 3.7 compatibility.
-
Dropped Python 3.7 compatibility.
-
Migrated project repository to https://gitlab.mpcdf.mpg.de/dlce-eva/python-newick
## [v1.9.0] - 2023-03-14
## [v1.9.0] - 2023-03-14
...
...
This diff is collapsed.
Click to expand it.
CONTRIBUTING.md
deleted
100644 → 0
+
0
−
13
View file @
9411ddee
Contributing
------------
Fork dlce-eva/python-newick and install the development environment:
```
sh
$
pip
install
virtualenv
# might require sudo/admin privileges
$
git clone https://github.com/<YOUR-GITHUB-HANDLE>/python-newick.git
$
cd
python-newick
$
python
-m
virtualenv .venv
$
source
.venv/bin/activate
# Windows: .venv\Scripts\activate.bat
$
pip
install
-r
requirements.txt
# installs the cloned version with dev-tools in development mode
```
This diff is collapsed.
Click to expand it.
RELEASING.md
+
1
−
1
View file @
ae0a53d8
...
@@ -38,7 +38,7 @@ python -m build -n
...
@@ -38,7 +38,7 @@ python -m build -n
twine upload dist/
*
twine upload dist/
*
```
```
-
Push
to github
:
-
Push:
```
shell
```
shell
git push origin
git push origin
git push
--tags
origin
git push
--tags
origin
...
...
This diff is collapsed.
Click to expand it.
setup.cfg
+
1
−
2
View file @
ae0a53d8
[metadata]
[metadata]
name
=
newick
name
=
newick
version
=
1.9.1.dev0
version
=
1.10.0
author
=
Robert Forkel
author
=
Robert Forkel
author_email
=
robert_forkel@eva.mpg.de
author_email
=
robert_forkel@eva.mpg.de
description
=
A python module to read and write the Newick format
description
=
A python module to read and write the Newick format
...
...
This diff is collapsed.
Click to expand it.
src/newick.py
+
1
−
1
View file @
ae0a53d8
...
@@ -10,7 +10,7 @@ import pathlib
...
@@ -10,7 +10,7 @@ import pathlib
import
itertools
import
itertools
import
dataclasses
import
dataclasses
__version__
=
"
1.
9.1.dev
0
"
__version__
=
"
1.
1ß.
0
"
QUOTE
=
"'"
QUOTE
=
"'"
ESCAPE
=
{
"'"
,
"
\\
"
}
ESCAPE
=
{
"'"
,
"
\\
"
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment