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 Jun 28, 2024
1 parent d01f6b5 commit f5c96b1
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
24 changes: 12 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ macpoetry-install: # Same as 'poetry install' except that on OSX Catalina, an e

configure: # does any pre-requisite installs
pip install --upgrade pip
pip install poetry==1.4.2
# pip install poetry==1.4.2
pip install setuptools
pip install wheel
ifeq ($(shell uname -s), Darwin)
ifeq ($(shell uname -m), arm64)
pip install pysam=="0.21.0"
pip install matplotlib=="3.3.4"
endif
endif
#ifeq ($(shell uname -s), Darwin)
#ifeq ($(shell uname -m), arm64)
# pip install pysam=="0.21.0"
# pip install matplotlib=="3.3.4"
#endif
#endif
poetry config virtualenvs.create false --local # do not create a virtualenv - the user should have already done this -wrr 20-Sept-2021

build-poetry:
Expand All @@ -68,13 +68,13 @@ macbuild-poetry:
make macpoetry-install

build: # builds
ifeq ($(shell uname -s), Darwin)
@echo "Looks like this is Mac so executing: make macbuild"
make macbuild
else
#ifeq ($(shell uname -s), Darwin)
# @echo "Looks like this is Mac so executing: make macbuild"
# make macbuild
#else
make build-poetry
make build-after-poetry
endif
#endif

macbuild: # Builds for MacOS (see: bin/macpoetry-install)
make macbuild-poetry
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ codeguru-profiler-agent = "^1.2.4"
# of cryptography.hazmat.bindings._rust in cryptography package. 2023-04-21.
cryptography = "39.0.2"
colorama = "0.3.3"
# dcicpyvcf = "^3.0.0.1b3"
dcicpyvcf = "^3.0.0"
# dcicpyvcf = "^3.0.0"
dcicpyvcf = "^3.0.0.1b5"
#dcicsnovault = "^11.14.2"
dcicsnovault = "11.16.0.1b3"
#dcicutils = "^8.8.5"
Expand Down

0 comments on commit f5c96b1

Please sign in to comment.