Skip to content

Commit

Permalink
Set Python 3.10 as minimal version
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrolexa committed Nov 19, 2024
1 parent 434ff7d commit 017b14c
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythontest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
48 changes: 45 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Ondrej Lexa <[email protected]>"]
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.12"
python = "^3.10"
numpy = "^2.1.3"
matplotlib = "^3.9.2"
scipy = "^1.14.1"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
url="https://github.com/ondrolexa/apsg",
license="MIT",
keywords="apsg",
python_requires=">=3.8",
python_requires=">=3.10",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
Expand Down

0 comments on commit 017b14c

Please sign in to comment.