Skip to content

Commit

Permalink
min requirements are now python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
sprivite committed Nov 20, 2024
1 parent e39732f commit 1f6c266
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- name: Checkout Repository 🛎️
uses: actions/checkout@v3
- name: Install Python 3.9 🐍
- name: Install Python 3.12 🐍
uses: actions/setup-python@v4
with:
python-version: "3.12"
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

We strongly suggest to install PhenEx in an isolated python virtual environment using your favorite package
manager, such as [condas](https://conda.io/projects/conda/en/latest/user-guide/install/index.html) or
[pyenv](https://github.com/pyenv/pyenv). PhenEx requires Python 3.9 or above. After setting up and activating
[pyenv](https://github.com/pyenv/pyenv). PhenEx requires Python 3.12 or above. After setting up and activating
your virtual environment, move on to the next step.

## Pip installation
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ def parse_requirements(filename):
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
python_requires=">=3.12",
install_requires=parse_requirements("requirements.txt"),
)

0 comments on commit 1f6c266

Please sign in to comment.