Skip to content

Commit 664ef6d

Browse files
authored
bump version, remove python 3.9 support (#435)
1 parent e36464c commit 664ef6d

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
FROM mcr.microsoft.com/devcontainers/miniconda:0-3
22

3+
# commenting out mamba install, is given an error, see:
4+
# https://github.com/conda/conda-libmamba-solver/issues/540
35
RUN conda install -n base -c conda-forge mamba
46

57
# Copy environment.yml (if found) to a temp location so we update the environment. Also
68
# copy "noop.txt" so the COPY instruction does not fail if no environment.yml exists.
7-
RUN conda install -n base -c conda-forge mamba
89
COPY environment.yml* .devcontainer/noop.txt /tmp/conda-tmp/
910
RUN if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/mamba env create -f /tmp/conda-tmp/environment.yml; fi \
1011
&& rm -rf /tmp/conda-tmp

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-22.04, ubuntu-latest, windows-latest]
20-
python-version: ["3.9", "3.10", "3.11", "3.12"]
20+
python-version: ["3.10", "3.11", "3.12"]
2121
build-method: ["manual", "docker"]
2222

2323
runs-on: ${{ matrix.os }}

hsds/basenode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from .util.k8sClient import getDnLabelSelector, getPodIps
3434
from . import hsds_logger as log
3535

36-
HSDS_VERSION = "0.9.2"
36+
HSDS_VERSION = "0.9.3"
3737

3838

3939
def getVersion():

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ classifiers = [
3030
"Topic :: Database",
3131
"Topic :: Software Development :: Libraries :: Python Modules",
3232
]
33-
requires-python = ">=3.8"
34-
version = "0.9.2"
33+
requires-python = ">=3.10"
34+
version = "0.9.3"
3535

3636
dependencies = [
3737
"aiohttp == 3.9.4",

0 commit comments

Comments
 (0)