Skip to content

Commit db9f38e

Browse files
authored
Merge pull request #30 from DataCrunch-io/fix/add-missing-packages-to-setup-requirements
Added missing packages to setup requirements
2 parents a85e8d7 + d0c258c commit db9f38e

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
Changelog
22
=========
33

4-
v1.8.1 (2025-03-24)
5-
-------------------
4+
v1.8.2 (2025-03-25)
5+
6+
* Added missing packages to setup requirements
7+
8+
v1.8.1 (2025-03-24) [YANKED]
9+
----------------------------
610

711
* Remove container name from deployment creation
812

9-
v1.8.0 (2025-03-24)
10-
-------------------
13+
v1.8.0 (2025-03-24) [YANKED]
14+
----------------------------
1115

1216
* Added support for containers
1317

datacrunch/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.8.1'
1+
VERSION = '1.8.2'

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@
1717
long_description_content_type="text/markdown",
1818
url="https://github.com/DataCrunch-io",
1919
packages=setuptools.find_packages(),
20-
install_requires=['requests>=2.25.1,<3'],
20+
install_requires=[
21+
'requests>=2.25.1,<3',
22+
'dataclasses_json>=0.6.7'
23+
],
2124
extras_require={
2225
'dev': [''],
2326
'test': ['pytest>=6.2.1,<7',
@@ -27,17 +30,16 @@
2730
},
2831
classifiers=[
2932
"Programming Language :: Python :: 3",
30-
'Programming Language :: Python :: 3.6',
31-
'Programming Language :: Python :: 3.7',
32-
'Programming Language :: Python :: 3.8',
3333
'Programming Language :: Python :: 3.9',
3434
'Programming Language :: Python :: 3.10',
3535
'Programming Language :: Python :: 3.11',
36+
'Programming Language :: Python :: 3.12',
37+
'Programming Language :: Python :: 3.13',
3638
"Development Status :: 5 - Production/Stable",
3739
"Intended Audience :: Developers",
3840
"License :: OSI Approved :: MIT License",
3941
"Operating System :: OS Independent",
4042
"Natural Language :: English"
4143
],
42-
python_requires='>=3.6',
44+
python_requires='>=3.9',
4345
)

0 commit comments

Comments
 (0)