diff --git a/.github/workflows/build-push-docker_pr.yml b/.github/workflows/build-push-docker_pr.yml index 45e8fd9..b28b939 100644 --- a/.github/workflows/build-push-docker_pr.yml +++ b/.github/workflows/build-push-docker_pr.yml @@ -13,7 +13,7 @@ jobs: run: echo "TAG=$(date +'%Y.%m.%d.%H.%M')" >> $GITHUB_ENV - uses: actions/setup-python@v1 with: - python-version: 3.11 + python-version: 3.9 - name: Install WHEEL tool run: pip install wheel - name: Build WHEEL file diff --git a/.github/workflows/build-push-docker_release.yml b/.github/workflows/build-push-docker_release.yml index e7f73e4..55431e5 100644 --- a/.github/workflows/build-push-docker_release.yml +++ b/.github/workflows/build-push-docker_release.yml @@ -14,7 +14,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: "3.11" + python-version: "3.9" - name: Install WHEEL tool run: pip install wheel - name: Build WHEEL file diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml index c390653..e85051d 100644 --- a/.github/workflows/pypi_publish.yml +++ b/.github/workflows/pypi_publish.yml @@ -10,7 +10,7 @@ jobs: name: Build Kit4DL and publish to PyPI strategy: matrix: - python-version: ["3.10"] + python-version: ["3.9"] os: [ubuntu-latest] runs-on: ${{ matrix.os }} environment: release diff --git a/.github/workflows/testpypi_publish.yml b/.github/workflows/testpypi_publish.yml index 422363c..6979cac 100644 --- a/.github/workflows/testpypi_publish.yml +++ b/.github/workflows/testpypi_publish.yml @@ -10,7 +10,7 @@ jobs: name: Build geokube and publish to TestPyPI strategy: matrix: - python-version: ["3.10"] + python-version: ["3.9"] os: [ubuntu-latest] # environment: # name: testpypi @@ -31,14 +31,4 @@ jobs: - name: Publish package distributions to TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 with: - repository-url: https://test.pypi.org/legacy/ - pypi-publish: - name: Upload release to PyPI - runs-on: ubuntu-latest - environment: - name: testpypi - url: https://test.pypi.org/p/geokube - permissions: - id-token: write # IMPORTANT: this permission is mandatory for trusted publishing - steps: - # retrieve your distributions here \ No newline at end of file + repository-url: https://test.pypi.org/legacy/ \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 86913e9..4ab8b02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN conda clean -afy \ && find /opt/conda/ -follow -type f -name '*.pyc' -delete \ && find /opt/conda/ -follow -type f -name '*.js.map' -delete \ && find /opt/conda/lib/python*/site-packages/bokeh/server/static -follow -type f -name '*.js' ! -name '*.min.js' -delete -COPY dist/geokube-0.2a0-py3-none-any.whl / +COPY dist/geokube-0.2.7-py3-none-any.whl / RUN pip install /geokube-0.2a0-py3-none-any.whl -RUN rm /geokube-0.2a0-py3-none-any.whl -ENV LD_LIBRARY_PATH=/opt/conda/x86_64-conda-linux-gnu/lib:/usr/lib/x86_64-linux-gnu +RUN rm /geokube-0.2.7-py3-none-any.whl +ENV LD_LIBRARY_PATH=/opt/conda/x86_64-conda-linux-gnu/lib:/usr/lib/x86_64-linux-gnu \ No newline at end of file diff --git a/geokube/version.py b/geokube/version.py index 03a5849..8d83856 100644 --- a/geokube/version.py +++ b/geokube/version.py @@ -1 +1 @@ -__version__ = "0.2a0" +__version__ = "0.2.7" \ No newline at end of file