Skip to content

Commit 1f794e1

Browse files
committed
simplify inter-dependency of titiler application and mosaic modules
1 parent 5c996d9 commit 1f794e1

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Release Notes
22

3-
## Next
3+
## 0.10.0 (2022-12-09)
4+
5+
**breaking change**
6+
7+
* Simplify dependency requirements for titiler.mosaic and titiler.application and using `=={currentVersion}`
48

59
### titiler.core
610

src/titiler/application/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
inst_reqs = [
99
"rio-cogeo>=3.1,<4.0",
10-
"titiler.core>=0.9,<0.10",
11-
"titiler.mosaic>=0.9,<0.10",
10+
"titiler.core==0.9.0",
11+
"titiler.mosaic==0.9.0",
1212
"starlette-cramjam>=0.3,<0.4",
1313
"python-dotenv",
1414
]

src/titiler/mosaic/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
with open("README.md") as f:
66
long_description = f.read()
77

8-
inst_reqs = ["titiler.core>=0.9,<0.10", "cogeo-mosaic>=5.0,<5.1"]
8+
inst_reqs = ["titiler.core==0.9.0", "cogeo-mosaic>=5.0,<5.1"]
99
extra_reqs = {
1010
"test": ["pytest", "pytest-cov", "pytest-asyncio", "httpx"],
1111
}

0 commit comments

Comments
 (0)