diff --git a/CHANGELOG.md b/CHANGELOG.md index f07832c..53711e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index bc4cbba..d29070f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ diff --git a/setup.py b/setup.py deleted file mode 100644 index 77392bf..0000000 --- a/setup.py +++ /dev/null @@ -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()