Skip to content

Commit

Permalink
Merge branch 'master' into numpy-greater-than-2
Browse files Browse the repository at this point in the history
  • Loading branch information
sjperkins committed Nov 7, 2024
2 parents f69bd5c + 586dd75 commit 9cfb1e5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- name: Create Cache Hash
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ History

X.Y.Z (YYYY-MM-DD)
------------------
* Deprecate Python 3.9 support (:pr:`338`)
* Update minio server version (:pr:`338`)
* Remove complicated push setup in github action workflow (:pr:`338`)
* Fix date typo in HISTORY.rst (:pr:`336`)
Expand Down
4 changes: 2 additions & 2 deletions daskms/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ def minio_server(tmp_path_factory):
server_process = Popen(args, env=env, shell=False, stdout=PIPE, stderr=PIPE)

try:
while line := server_process.stdout.readline():
if "Documentation: ".encode("utf-8") in line:
while line := server_process.stderr.readline():
if "Docs: ".encode("utf-8") in line:
break

retcode = server_process.poll()
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ readme = "README.rst"
packages = [{include = "daskms"}]

[tool.poetry.dependencies]
python = "^3.9, < 3.13"
python = "^3.10, < 3.13"
appdirs = "^1.4.4"
dask = {extras = ["array"], version = ">= 2023.1.1"}
donfig = ">= 0.8.0"
Expand Down

0 comments on commit 9cfb1e5

Please sign in to comment.