Skip to content

Commit

Permalink
change non x64 py version to 3.11, numpy 1.24
Browse files Browse the repository at this point in the history
  • Loading branch information
philippadoherty committed Feb 13, 2024
1 parent 1ba9ad0 commit 1d1e7bd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-MACS3-macos12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Setup venv
run: |
# create venv
python3 -m venv macs3venv
python3.11 -m venv macs3venv
- name: Install dependencies
run: |
# make sure pip is the lastest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-and-test-MACS3-non-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ jobs:
cd /home/macs3/
# let's create virtualenv
virtualenv --system-site-packages macsenv
# virtualenv --system-site-packages macsenv
virtualenv --python=python3.11 --system-site-packages macsenv
source macsenv/bin/activate
# copy source code over
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires=['setuptools>=60.0', 'numpy==1.25', 'cykhash>=2.0,<3.0', 'Cython~=3.0', 'hmmlearn>=0.3']
requires=['setuptools>=60.0', 'numpy==1.24', 'cykhash>=2.0,<3.0', 'Cython~=3.0', 'hmmlearn>=0.3']
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Cython~=3.0
numpy==1.25
numpy==1.24
hmmlearn>=0.3
cykhash>=2.0,<3.0
pytest>=7.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'Programming Language :: Python :: 3.12',
'Programming Language :: Cython', ]

install_requires = [ "numpy==1.25",
install_requires = [ "numpy==1.24",
"hmmlearn>=0.3",
"cykhash>=2.0,<3.0",
"Cython~=3.0" ]
Expand Down

0 comments on commit 1d1e7bd

Please sign in to comment.