Skip to content

Commit 272a799

Browse files
committed
Update README and pyproject.toml for dependency specifications
1 parent bdf16ab commit 272a799

2 files changed

Lines changed: 15 additions & 7 deletions

File tree

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,18 @@ Users are encouraged to suggest features or improvements via [GitHub Issues](htt
7171
Contributions to `PyEyesWeb` are welcome! Whether it's reporting bugs, adding features, improving documentation, or providing examples, your help is appreciated.
7272

7373
### How to Contribute
74-
1. **Fork the repository** and create a branch for your feature or bug fix:
74+
1. **Fork the repository**.
75+
76+
2. **Clone the forked repository** set up the development environment
77+
```bash
78+
git clone https://github.com/<YOUR_USERNAME>/PyEyesWeb.git
79+
cd pyeyesweb
80+
pip install -e .[dev]
81+
```
82+
2. Create a branch for your feature or bug fix:
7583
```bash
7684
git checkout -b feature/your-feature-name
7785
```
78-
2. Set up the development environment:
79-
```bash
80-
pip install pyeyesweb[dev]
81-
```
8286
3. Make your changes, ensuring code quality and adherence to the project's coding standards.
8387
4. Submit a pull request to the `main` branch, with a clear description of your changes.
8488
5. Engage in code reviews and address any feedback provided by maintainers.

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ classifiers = [
4848
]
4949

5050
dependencies = [
51-
"numpy==1.24.1",
52-
"scipy==1.15.0",
51+
"numpy<2",
52+
"scipy<=1.26.4",
5353
"numba>=0.57.0",
5454
"scikit-learn>=1.3.0"
5555
]
@@ -73,6 +73,10 @@ dev = [
7373
"mkdocs-section-index==0.3.10"
7474
]
7575

76+
touchdesigner = [
77+
"numpy==1.24.1"
78+
]
79+
7680
[project.urls]
7781
Documentation = "https://infomuscp.github.io/PyEyesWeb/"
7882
"Casa Paganini" = "http://www.casapaganini.org/index_eng.php"

0 commit comments

Comments
 (0)