Skip to content
This repository was archived by the owner on Aug 8, 2024. It is now read-only.

Commit 2961e51

Browse files
authored
Merge pull request #12 from Oxolo/fix-jinja2-dependency
Fix jinja2 dependency
2 parents 2bf1211 + 799763e commit 2961e51

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

44
## [1.x.x] - 2022-xx-xx
55

6+
## [1.1.1] - 2022-08-31
7+
### Fixed
8+
- Relaxed jinja2 dependency
9+
610
## Fixed
711
- Fixed import of version in documentation
812

requirements.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,9 @@ m2r2==0.3.2
3232

3333
grequests==0.6.0
3434
pandas==1.4.2
35-
numpy==1.22.3
35+
numpy==1.22.3
36+
jinja2>=2.11.3
37+
urllib3>=1.26.5
38+
jinja2>=2.11.3
39+
hypothesis>=6.54.3
40+
jedi>=0.10

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
long_description = Path("README.md").read_text()
1414

1515
NAME = "oxapi"
16-
VERSION = "1.1.0"
16+
VERSION = "1.1.1"
1717
DESCRIPTION = "The Python library for querying the OxAPI"
1818
AUTHOR = "Oxolo GmbH"
1919
AUTHOR_EMAIL = "[email protected]"
@@ -24,7 +24,7 @@
2424
"pandas>=1.3",
2525
"requests>=2.27",
2626
"urllib3>=1.26.5",
27-
"jinja2==2.11.3",
27+
"jinja2>=2.11.3",
2828
"hypothesis>=6.54.3",
2929
"jedi>=0.10",
3030
]

0 commit comments

Comments
 (0)