Skip to content

Commit

Permalink
Revert "updated requirement for python>=3.10"
Browse files Browse the repository at this point in the history
This reverts commit 1d6faf0.
  • Loading branch information
dieuska committed Sep 19, 2024
1 parent 1d6faf0 commit cc844f6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]

steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 8 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,14 @@

# 0.3.0

! Not Backwards compatable!
! Not Backwards compatable !

- Refactoring:
- refactor the structure of the (internal) dicts: dict_series, dict_predicted. More logical and faster [#57]
- refactoring of 'formula-function': more generic [#59]
- removed deprecated loaders from codebase [#77]
- simplify the core-functionalities of Aligner: process, predict, compare [#89]
- cleanup unused functions [#81]
- requires python>=3.10

- Functionalities:
- Add brdr-version to formula [#66]
Expand All @@ -41,4 +40,10 @@
- Bugfixing:
- adding a safe_equals-function to catch GEOsException bug [#71]









5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ maintainers = [
{ name = "Koen Van Daele", email = "[email protected]" },
{ name = "Vermeyen Maerten", email = "[email protected]" }
]
requires-python = ">=3.10"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
Expand Down Expand Up @@ -57,4 +58,4 @@ build-backend = "hatchling.build"
packages = ["brdr"]

[tool.black]
target-version = ['py310', 'py311', 'py312']
target-version = ['py39', 'py310', 'py311', 'py312']

0 comments on commit cc844f6

Please sign in to comment.