Skip to content

Commit

Permalink
Disable py3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
domna authored and rettigl committed Aug 19, 2024
1 parent 8f75d06 commit 556b57f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
URL = "https://gitlab.com/lanzara-group/python-arpes"
EMAIL = "chstan@berkeley.edu"
AUTHOR = "Conrad Stansbury"
REQUIRES_PYTHON = ">=3.8.0" # we're being less permissive because of pyqtgraph
REQUIRES_PYTHON = ">=3.8.0,<3.12" # we're being less permissive because of pyqtgraph

about = {}
with open("./arpes/__init__.py") as fp:
Expand Down Expand Up @@ -95,13 +95,13 @@
You should follow standard best practices for working with IPython and Jupyter.
To get the interactive volumetric data explorer `qt_tool` you will need to install
`PyQt5` and `pyqtgraph`.
`PyQt5` and `pyqtgraph`.
To use the Igor data loading libraries in PyARPES you will need to install the `igor`
To use the Igor data loading libraries in PyARPES you will need to install the `igor`
module from 'https://github.com/chstan/igorpy/tarball/712a4c4#egg=igor-0.3.1'.
Some functionality, including PCA/Factor Analysis decomposition tools, require
additional heavy dependencies such as `scikit-learn` and `scikit-image`.
Some functionality, including PCA/Factor Analysis decomposition tools, require
additional heavy dependencies such as `scikit-learn` and `scikit-image`.
For Jupyter integration, please have a look at the documentation (link above).
For support issues, contact chstansbury@gmail.com or chstan@berkeley.edu.
Expand Down

0 comments on commit 556b57f

Please sign in to comment.