Skip to content

Commit

Permalink
Added numpy ^1.26.4 in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jul 8, 2024
1 parent 327d247 commit 9c816f2
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 56 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ dcicutils
Change Log
----------

8.13.1
======
* Fallout from Python 3.12 support.
- Since numpy not in pyproject.toml and we need numpy < 2 (^1.26.4) failed to import dcicutils.ff_utils.


8.13.0
======
* Updates related to Python 3.12.
Expand Down
101 changes: 48 additions & 53 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicutils"
version = "8.13.0"
version = "8.13.1" # TODO: To become 8.13.1
description = "Utility package for interacting with the 4DN Data Portal and other 4DN resources"
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
Expand Down Expand Up @@ -29,7 +29,6 @@ classifiers = [

# Specify the Python versions you support here.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand All @@ -38,7 +37,7 @@ classifiers = [


[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
python = ">=3.9,<3.13"
boto3 = "^1.34.136"
botocore = "^1.34.136"
# The DCIC portals (cgap-portal and fourfront) are very particular about which ElasticSearch version.
Expand All @@ -51,6 +50,7 @@ docker = "^4.4.4"
gitpython = "^3.1.2"
jsonc-parser = "^1.1.5"
jsonschema = "^4.22.0"
numpy = "^1.26.4"
openpyxl = "^3.1.2"
opensearch-py = "^2.0.1"
pyOpenSSL = "^23.1.1"
Expand Down

0 comments on commit 9c816f2

Please sign in to comment.