Skip to content

Commit

Permalink
add pyton 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
cokelaer committed Oct 17, 2024
1 parent ffd27b9 commit e77dc79
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
with:
python-version: ${{ matrix.python }}


# Handle the numpy installation separately for Python 3.12
- name: Install numpy for Python 3.12
if: matrix.python == '3.12'
run: |
pip install --upgrade pip
pip install setuptools wheel
pip install --no-use-pep517 "numpy" --upgrade # Upgrade numpy version for 3.12
- name: Install the package itself
run: |
pip install poetry
Expand Down
1 change: 0 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Please see : http://colormap.readthedocs.io/ for an up-to-date documentation.
:notebook: Please see https://github.com/cokelaer/colormap/tree/main/notebooks



What is it ?
################

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "colormap"
version = "1.1.0"
version = "1.1.1"
description = "Commn utilities to ease development of Python packages"
authors = ["Thomas Cokelaer <[email protected]>"]
license = "BSD-3-Clause"
Expand Down Expand Up @@ -38,12 +38,12 @@ Documentation = "https://colormap.readthedocs.io"

[tool.poetry.dependencies]
python = "^3.9"
matplotlib = "^3.8.4"
matplotlib = "^3"



[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest = "^8.0.0"
pytest-cov = "^4.1.0"
pytest-xdist = "^3.5.0"
pytest-mock = "^3.12.0"
Expand Down

0 comments on commit e77dc79

Please sign in to comment.