Skip to content

Commit

Permalink
chore: update dependencies and environment files
Browse files Browse the repository at this point in the history
Fix python version and remove editable installs
  • Loading branch information
kmnhan committed Mar 27, 2024
1 parent 2b5e2cf commit 6ec32dd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 18 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/erlab)](https://pypi.org/project/erlab/)
[![PyPi](https://img.shields.io/pypi/v/erlab.svg)](https://pypi.org/project/erlab/)
[![Workflow Status](https://github.com/kmnhan/erlabpy/actions/workflows/release.yml/badge.svg)](https://github.com/kmnhan/erlabpy/actions/workflows/release.yml)
[![Documentation Status](https://readthedocs.org/projects/erlabpy/badge/?version=latest)](https://erlabpy.readthedocs.io/en/latest/)
[![Documentation Status](https://readthedocs.org/projects/erlabpy/badge/)](https://erlabpy.readthedocs.io/)
[![License](https://img.shields.io/pypi/l/erlab)](https://pypi.org/project/erlab/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

Welcome to *ERLabPy*, a Python library designed to simplify and streamline the
Expand All @@ -17,8 +18,8 @@ spectroscopy (ARPES) experiments.
existing scientific Python workflows. It is also designed to be extensible,
allowing users to easily add custom functionality and analysis tools.

*ERLabPy* is developed and maintained by the Electronic structure Research
Laboratory (ERLab) at Korea Advanced Institute of Science and Technology
*ERLabPy* is developed and maintained by the electronic structure research
laboratory at Korea Advanced Institute of Science and Technology
(KAIST).

## Features
Expand Down Expand Up @@ -50,11 +51,11 @@ Try enabling/disabling dark mode in your browser!

## Documentation

The full documentation for ERLabPy is available at [Read the Docs](https://erlabpy.readthedocs.io/en/latest/).
The full documentation for ERLabPy is available at [Read the Docs](https://erlabpy.readthedocs.io/).

## Getting Started

To get started with ERLab, follow the [installation instructions](https://erlabpy.readthedocs.io/en/latest/readme.html).
To get started with ERLab, follow the [installation instructions](https://erlabpy.readthedocs.io/en/stable/getting-started.html).

Then, you can import the `erlab` module in your Python scripts and start analyzing your data.

Expand All @@ -65,7 +66,7 @@ import erlab
## Contributing

Contributions are welcome! Please open an issue or pull request if you have any
suggestions or improvements.
suggestions or improvements. For more information on contributing, see the [development guide](https://erlabpy.readthedocs.io/en/stable/development.html).

## License

Expand Down
7 changes: 3 additions & 4 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: erlab
channels:
- conda-forge
dependencies:
- python>=3.10
- python>=3.11
- ipython
- pip>=19.3
- setuptools
Expand Down Expand Up @@ -53,6 +53,5 @@ dependencies:
- pip:
- pyqt6>=6.2.2
- csaps
- -e git+https://github.com/kmnhan/igor2.git#egg=igor2
- -e git+https://github.com/kmnhan/igorpy.git#egg=igor
- -e git+https://github.com/kmnhan/arpes.git#egg=arpes
- igor2 @ git+https://github.com/kmnhan/igor2@master
- arpes @ git+https://github.com/kmnhan/arpes@master
7 changes: 3 additions & 4 deletions environment_apple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: erlab
channels:
- conda-forge
dependencies:
- python>=3.10
- python>=3.11
- ipython
- pip>=19.3
- setuptools
Expand Down Expand Up @@ -57,6 +57,5 @@ dependencies:
- pip:
- pyqt6>=6.2.2
- csaps
- -e git+https://github.com/kmnhan/igor2.git#egg=igor2
- -e git+https://github.com/kmnhan/igorpy.git#egg=igor
- -e git+https://github.com/kmnhan/arpes.git#egg=arpes
- igor2 @ git+https://github.com/kmnhan/igor2@master
- arpes @ git+https://github.com/kmnhan/arpes@master
2 changes: 1 addition & 1 deletion environment_nogit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: erlab
channels:
- conda-forge
dependencies:
- python>=3.10
- python>=3.11
- ipython
- pip>=19.3
- setuptools
Expand Down
2 changes: 1 addition & 1 deletion environment_nogit_mkl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: erlab
channels:
- conda-forge
dependencies:
- python>=3.10
- python>=3.11
- ipython
- pip>=19.3
- setuptools
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ dependencies = [
"pyqtgraph>=0.13.1",
"qtawesome",
"superqt",
'importlib-metadata; python_version>="3.10"',
'importlib-metadata; python_version>="3.11"',
]
dynamic = ["version"]

[project.urls]
Documentation = "https://erlabpy.readthedocs.io/en/latest/"
Documentation = "https://erlabpy.readthedocs.io"
Repository = "https://github.com/kmnhan/erlabpy.git"
Issues = "https://github.com/kmnhan/erlabpy/issues"
Changelog = "https://github.com/kmnhan/erlabpy/blob/main/CHANGELOG.md"
Expand Down

0 comments on commit 6ec32dd

Please sign in to comment.