prep next version
EIVE/-/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2023-09-14 12:07:25 +02:00
parent fe439b4d3c
commit a8545211e8
Signed by: muellerr
GPG Key ID: A649FB78196E3849
3 changed files with 10 additions and 13 deletions

View File

@ -10,6 +10,15 @@ list yields a list of all related PRs for each release.
# [unreleased]
# [v5.6.0] 2023-09-14
- `tmtccmd` v6.0.0
- `spacepackets` v18.0.0
## Added
- CFDP file downlink support.
# [v5.5.1] 2023-09-12
## Fixed

View File

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "eive-tmtc"
description = "TMTC Commander EIVE"
readme = "README.md"
version = "5.5.1"
version = "5.6.0"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [

View File

@ -1,12 +0,0 @@
#!/usr/bin/env python3
"""
We do the package handling in the static setup.cfg but include an empty setup.py
to allow editable installs https://packaging.python.org/tutorials/packaging-projects/
and provide extensibility
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup()