-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "eoapi-devseed"
version = "0.3.3"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
[dependency-groups]
deploy = [
"aws-cdk-lib==2.220.0",
"boto3==1.24.15",
"eoapi-cdk==10.4.2",
"pydantic-settings[yaml]==2.2.1",
"pydantic==2.7",
"typing-extensions>=4.12.2",
]
dev = [
"httpx>=0.28.1",
"pre-commit>=4.1.0",
"psycopg[pool]>=3.2.4",
"pypgstac==0.9.9",
"pytest>=8.3.4",
"bump-my-version"
]
load = [
"pgstacrs>=0.1.1",
"stacrs>=0.5.9",
]
[tool.bumpversion]
current_version = "0.3.3"
search = "{current_version}"
replace = "{new_version}"
regex = false
tag = true
commit = true
tag_name = "{new_version}"
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "runtimes/eoapi/raster/eoapi/raster/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "runtimes/eoapi/stac/eoapi/stac/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "runtimes/eoapi/vector/eoapi/vector/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'