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

Commit 38aa204

Browse files
authored
Pin requirements (#18)
1 parent 2b4c6a9 commit 38aa204

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,11 @@
55
Refer to our [SDK documentation](https://docs.geteppo.com/feature-flags/sdks/python) for how to install and use the SDK.
66

77
## Supported Python Versions
8+
89
This version of the SDK is compatible with Python 3.6 and above.
10+
11+
## Development
12+
13+
### Running tests
14+
15+
`make test`

eppo_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from eppo_client.http_client import HttpClient, SdkParams
1111
from eppo_client.read_write_lock import ReadWriteLock
1212

13-
__version__ = "1.2.0"
13+
__version__ = "1.2.1"
1414

1515
__client: Optional[EppoClient] = None
1616
__lock = ReadWriteLock()

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
pydantic
2-
requests
3-
cachetools
4-
types-cachetools
5-
types-requests
1+
pydantic==1.10.*
2+
requests==2.31.*
3+
cachetools==5.3.*
4+
types-cachetools==5.3.*
5+
types-requests==2.31.*

0 commit comments

Comments
 (0)