Skip to content
Snippets Groups Projects
Commit ae0a53d8 authored by Robert Forkel's avatar Robert Forkel
Browse files

release 1.10.0

parent 9411ddee
No related merge requests found
Pipeline #243304 passed
...@@ -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
......
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
```
...@@ -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
......
[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
......
...@@ -10,7 +10,7 @@ import pathlib ...@@ -10,7 +10,7 @@ import pathlib
import itertools import itertools
import dataclasses import dataclasses
__version__ = "1.9.1.dev0" __version__ = "1.1ß.0"
QUOTE = "'" QUOTE = "'"
ESCAPE = {"'", "\\"} ESCAPE = {"'", "\\"}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment