Skip to content

Commit

Permalink
Support for Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
dmichaels-harvard committed Jul 1, 2024
1 parent ecc727b commit c50a123
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Change Log
- Had to update dcicutils (from 8.11.0) to 8.13.0 (for pyramid update for imp import not found).
- Had to update future (from >=0.15.2,<1) to 1.0.0 (otherwise in fourfront for from
past.builtins import basestring we get ModuleNotFoundError: No module named 'imp').
IN PROGRESS - NOW fourfront not building ... back to future 0.18.3 ...
* Minor change to dev_servers.py to facilitate running a local ElasticSearch proxy
to observe traffic (resquests/responses) between the portal and ElasticSearch
with a tool like mitmproxy or mitmweb; see comments in dev_server.py.
Expand Down
7 changes: 3 additions & 4 deletions poetry.lock

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

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dcicsnovault"
version = "11.17.0.1b4" # TODO: To become 11.18.0
version = "11.17.0.1b5" # TODO: To become 11.18.0
description = "Storage support for 4DN Data Portals."
authors = ["4DN-DCIC Team <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -49,7 +49,8 @@ elasticsearch_dsl = "^7.4.0"
#dcicutils = "^8.11.0"
dcicutils = "8.12.0.1b8"
# future = ">=0.15.2,<1"
future = "^1.0.0"
# future = "^1.0.0"
future = "^0.18.3"
html5lib = ">=1.1" # experimental, should be OK now that we're not using moto server
humanfriendly = "^1.44.9"
netaddr = ">=0.8.0,<1"
Expand Down

0 comments on commit c50a123

Please sign in to comment.