File tree Expand file tree Collapse file tree 5 files changed +22
-9
lines changed Expand file tree Collapse file tree 5 files changed +22
-9
lines changed Original file line number Diff line number Diff line change 1313 - uses : actions/checkout@v4
1414 - uses : actions/setup-python@v5
1515 with :
16- python-version : " 3.9 "
16+ python-version : " 3.12 "
1717 - name : Test
1818 run : |
1919 pip install -r requirements.txt
Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v5.7.4-rc.2 (2025-05-21)
5+
6+ ### Bug Fixes
7+
8+ - ** Copyright** : Update year
9+ ([ ` af8afcf ` ] ( https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/af8afcfafb9a7ed6f98add3263feead6ea8a25b1 ) )
10+
11+
12+ ## v5.7.4-rc.1 (2025-05-21)
13+
14+ ### Bug Fixes
15+
16+ - ** python 3.12** : Compatibility
17+ ([ ` 0b43168 ` ] ( https://github.com/Geode-solutions/OpenGeodeWeb-Back/commit/0b43168d1ce5776c2767172df02e922898c908bb ) )
18+
19+
420## v5.7.3 (2025-05-20)
521
622
Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ Detailed changes for each release are documented in the [release notes](https://
2929
3030[ MIT] ( https://opensource.org/licenses/MIT )
3131
32- Copyright (c) 2019 - 2024 , Geode-solutions
32+ Copyright (c) 2019 - 2025 , Geode-solutions
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ build-backend = "setuptools.build_meta"
55
66[project ]
77name = " OpenGeodeWeb-Back"
8- version = " 5.7.3 "
8+ version = " 5.7.4-rc.2 "
99dynamic = [" dependencies" ]
1010authors = [
1111 {
name =
" Geode-solutions" ,
email =
" [email protected] " },
1212]
1313description = " OpenGeodeWeb-Back is an open source framework that proposes handy python functions and wrappers for the OpenGeode ecosystem"
1414readme = " README.md"
15- requires-python = " >=3.8 "
15+ requires-python = " >=3.9, <3.13 "
1616classifiers = [
1717 " Programming Language :: Python :: 3" ,
1818 " License :: OSI Approved :: MIT License" ,
Original file line number Diff line number Diff line change 88import flask
99from jsonschema import validate
1010from jsonschema .exceptions import ValidationError
11- import pkg_resources
11+ import importlib . metadata as metadata
1212
1313# Local application imports
1414
@@ -70,10 +70,7 @@ def versions(list_packages: list):
7070 list_with_versions = []
7171 for package in list_packages :
7272 list_with_versions .append (
73- {
74- "package" : package ,
75- "version" : pkg_resources .get_distribution (package ).version ,
76- }
73+ {"package" : package , "version" : metadata .distribution (package ).version }
7774 )
7875 return list_with_versions
7976
You can’t perform that action at this time.
0 commit comments