Skip to content

Commit

Permalink
Merge pull request #293 from johntruckenbrodt/bugfix/sqlalchemy_utils
Browse files Browse the repository at this point in the history
require python<3.11 to prevent sqlalchemy-utils error
  • Loading branch information
johntruckenbrodt authored Mar 19, 2024
2 parents 07b38be + 6429156 commit b20aebd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python>=3.6
- python>=3.6,<3.11
- progressbar2
- numpy
- spatialist>=0.12.1
Expand Down
1 change: 1 addition & 0 deletions environment-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python>=3.6,<3.11
- matplotlib
- numpy
- sphinx<7.0 # https://github.com/readthedocs/sphinx_rtd_theme/issues/1463
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ channels:
- conda-forge
- defaults
dependencies:
- python>=3.6
- python>=3.6,<3.11 # https://github.com/kvesteri/sqlalchemy-utils/issues/716
- progressbar2
- numpy
- spatialist>=0.12.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
[project]
name = "pyroSAR"
description = "a framework for large-scale SAR satellite data processing"
requires-python = ">=3.6"
requires-python = ">=3.6,<3.11"
license = { file = "LICENSE.txt" }
maintainers = [
{ name = "John Truckenbrodt", email = "[email protected]" }
Expand Down

0 comments on commit b20aebd

Please sign in to comment.