Skip to content

Commit

Permalink
Prepare for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato committed Dec 28, 2023
1 parent 0eb8115 commit ba37c80
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.4] - 2023-12-28 :snowman_with_snow:
- Improve the library to deep-merge dictionaries of values instead of replacing
objects entirely (fix [#10](https://github.com/Neoteroi/essentials-configuration/issues/10)), by @StummeJ.
- Add Python 3.12 to the build matrix.

## [2.0.3] - 2023-04-15 :crown:
- Adopts `Rich`, through `rich-click` for the project CLI.
- Renames the recently added `secrets` feature to `settings`.
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "essentials-configuration"
version = "2.0.3"
version = "2.0.4"
authors = [{ name = "Roberto Prevato", email = "[email protected]" }]
description = "Implementation of key-value pair based configuration for Python applications."
readme = "README.md"
Expand All @@ -17,11 +17,16 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
keywords = ["configuration", "root", "management", "strategy", "settings"]

dependencies = ["deepmerge~=1.1.0", "tomli; python_version < '3.11'", "python-dotenv~=1.0.0"]
dependencies = [
"deepmerge~=1.1.0",
"tomli; python_version < '3.11'",
"python-dotenv~=1.0.0",
]

[project.optional-dependencies]
yaml = ["PyYAML"]
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
appdirs==1.4.4
attrs==22.1.0
black==22.10.0
black
build==0.10.0
click==8.1.3
coverage==6.5.0
Expand Down Expand Up @@ -33,5 +33,4 @@ rich==13.3.4
rich-click==1.6.1
toml==0.10.2
tomli==2.0.1
typed-ast==1.5.4
typing_extensions==4.5.0

0 comments on commit ba37c80

Please sign in to comment.