Skip to content
Snippets Groups Projects
Commit 2bdfa970 authored by Oriol.Tinto's avatar Oriol.Tinto
Browse files

Fix CI publishing.

parent ecf47de3
No related branches found
No related tags found
1 merge request!9Fix CI publishing.
......@@ -27,7 +27,7 @@ deploy-to-testpypi:
script:
- pip install twine
- python setup.py sdist bdist_wheel
- twine upload -u $PYPI_TEST_USER -p $PYPI_TEST_PASSWORD --repository-url https://test.pypi.org/legacy/ --skip-existing dist/*
- twine upload -u "__token__" -p "$PYPI_TEST_PASSWORD" --repository-url https://test.pypi.org/legacy/ --skip-existing dist/*
install-from-testpypi:
stage: test_install
......@@ -55,4 +55,4 @@ deploy-to-pypi:
script:
- pip install twine
- python setup.py sdist bdist_wheel
- twine upload -u $PYPI_USERNAME -p $PYPI_PASSWORD --skip-existing dist/*
\ No newline at end of file
- twine upload -u "__token__" -p "$PYPI_PASSWORD" --skip-existing dist/*
\ No newline at end of file
2023.4
\ No newline at end of file
2023.4.1
\ No newline at end of file
......@@ -54,6 +54,19 @@ class Encoding(_Mapping):
def __repr__(self):
return f"{self.__class__.__name__}({self.to_string()})"
def set_chunk_sizes(self, chunk_sizes: tuple) -> None:
"""
Method to add chunksizes into the encoding dictionary.
Parameters
----------
chunk_sizes
Returns
-------
"""
self._kwargs["chunksizes"] = chunk_sizes
def set_chunk_sizes(self, chunk_sizes: tuple) -> None:
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment