Skip to content

Commit 5a3910b

Browse files
authored
Merge pull request #59 from IRNAS/release/v0.10.0
Release v0.10.0
2 parents aecad39 + 42d0876 commit 5a3910b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
## [Unreleased]
88

9+
## [0.10.0] - 2023-03-28
10+
11+
### Added
12+
13+
- Support for Python 3.10.x version.
14+
915
## [0.9.0] - 2023-03-27
1016

1117
### Added
@@ -189,7 +195,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
189195
- Docker scripts for building and running docker containers, for development
190196
purposes.
191197

192-
[Unreleased]: https://github.com/IRNAS/irnas-east-software/compare/v0.9.0...HEAD
198+
[Unreleased]: https://github.com/IRNAS/irnas-east-software/compare/v0.10.0...HEAD
199+
200+
[0.10.0]: https://github.com/IRNAS/irnas-east-software/compare/v0.9.0...v0.10.0
193201

194202
[0.9.0]: https://github.com/IRNAS/irnas-east-software/compare/v0.8.0...v0.9.0
195203

src/east/helper_functions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
supported_python_versions = [
3131
{"major": 3, "minor": 8},
3232
{"major": 3, "minor": 9},
33+
{"major": 3, "minor": 10},
3334
]
3435

3536
progress = Progress(

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# content of: tox.ini , put in same dir as setup.py
22
[tox]
3-
envlist = python3.7, python3.8, python3.9
3+
envlist = python3.7, python3.8, python3.9, python3.10
44
isolated_build = True
55

66
[testenv]

0 commit comments

Comments
 (0)