Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
Changelog
=========

v1.8.1 (2025-03-24)
-------------------
v1.8.2 (2025-03-25)

* Added missing packages to setup requirements

v1.8.1 (2025-03-24) [YANKED]
----------------------------

* Remove container name from deployment creation

v1.8.0 (2025-03-24)
-------------------
v1.8.0 (2025-03-24) [YANKED]
----------------------------

* Added support for containers

Expand Down
2 changes: 1 addition & 1 deletion datacrunch/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.8.1'
VERSION = '1.8.2'
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
long_description_content_type="text/markdown",
url="https://github.com/DataCrunch-io",
packages=setuptools.find_packages(),
install_requires=['requests>=2.25.1,<3'],
install_requires=[
'requests>=2.25.1,<3',
'dataclasses_json>=0.6.7'
],
extras_require={
'dev': [''],
'test': ['pytest>=6.2.1,<7',
Expand All @@ -27,17 +30,16 @@
},
classifiers=[
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English"
],
python_requires='>=3.6',
python_requires='>=3.9',
)