Skip to content

Commit 47adcd4

Browse files
authored
Merge pull request #73 from mullenkamp/dev
fixed pydantic version
2 parents 294f680 + ca3f883 commit 47adcd4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

conda/meta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "hilltop-py" %}
2-
{% set version = "2.2.3" %}
2+
{% set version = "2.2.4" %}
33
# {% set sha256 = "72a156e328247c91cb7f5440ffa98069c0090892f8d9d07fd57e36c0611a0403" %}
44

55
# sha256 is the prefered checksum -- you can get it for a file with:
@@ -37,7 +37,7 @@ requirements:
3737
run:
3838
- python >=3.8
3939
- pandas
40-
- pydantic >2
40+
- pydantic <2
4141
- orjson
4242
- requests
4343

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pandas
2-
pydantic>2
2+
pydantic<2
33
orjson
44
requests

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
name = 'hilltop-py'
1111
main_package = 'hilltoppy'
1212
# datasets = 'datasets'
13-
version = '2.2.3'
13+
version = '2.2.4'
1414
descrip = 'Functions to access Hilltop data'
1515

1616
# The below code is for readthedocs. To have sphinx/readthedocs interact with
@@ -19,7 +19,7 @@
1919
if os.environ.get('READTHEDOCS', False) == 'True':
2020
INSTALL_REQUIRES = []
2121
else:
22-
INSTALL_REQUIRES = ['pandas', 'pydantic>2', 'orjson', 'requests']
22+
INSTALL_REQUIRES = ['pandas', 'pydantic<2', 'orjson', 'requests']
2323

2424
# Get the long description from the README file
2525
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:

0 commit comments

Comments
 (0)