Skip to content

Commit dac37b8

Browse files
committed
Upgraded dependencies and started jackhammer mode documentation.
1 parent b6d1f10 commit dac37b8

File tree

5 files changed

+29
-15
lines changed

5 files changed

+29
-15
lines changed

.idea/copilot.data.migration.agent.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copilot.data.migration.edit.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/development/index.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ on [GitHub](https://github.com/VirtualBrainLab/ephys-link), and we welcome contr
55

66
This section describes:
77

8-
- [The Socket.IO server's API](socketio_api.md) and how to communicate with Ephys Link from a client application
9-
- How to [add a new manipulator](adding_a_manipulator.md) to Ephys Link
10-
- General [code organization](code_organization.md) for Ephys Link
11-
- Auto-generated [source code reference](../reference/SUMMARY.md) intended for developers who are maintaining Ephys Link
8+
- [The Socket.IO server's API](socketio_api.md) and how to communicate with Ephys Link from a client application.
9+
- How to [add a new manipulator](adding_a_manipulator.md) to Ephys Link.
10+
- General [code organization](code_organization.md) for Ephys Link.
11+
- Auto-generated [source code reference](../reference/SUMMARY.md) intended for developers who are maintaining Ephys Link.
12+
- Testing [Jackhammer Mode](jackhammer_mode.md).
1213

1314
## Installing for Development
1415

1516
1. Clone the repository.
16-
2. Install [UV](https://docs.astral.sh/uv/#installation)
17-
3. Install [Hatch](https://hatch.pypa.io/latest/install/)
18-
4. In a terminal, navigate to the repository's root directory and run
17+
2. Install [UV](https://docs.astral.sh/uv/#installation).
18+
3. Install [Hatch](https://hatch.pypa.io/latest/install/).
19+
4. In a terminal, navigate to the repository's root directory and run.
1920

2021
```bash
2122
hatch shell
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Jackhammer Mode

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ exclude = ["/.github", "/.idea", "/docs"]
5959
installer = "uv"
6060
python = "3.13"
6161
dependencies = [
62-
"pyinstaller==6.14.2",
63-
"basedpyright==1.29.5",
64-
"pytest==8.4.1",
65-
"pytest-cov==6.2.1",
66-
"pytest-mock==3.14.1",
67-
"pytest-asyncio==1.0.0"
62+
"pyinstaller==6.15.0",
63+
"basedpyright==1.31.4",
64+
"pytest==8.4.2",
65+
"pytest-cov==6.3.0",
66+
"pytest-mock==3.15.0",
67+
"pytest-asyncio==1.1.0"
6868
]
6969
[tool.hatch.envs.default.scripts]
7070
exe = "pyinstaller.exe ephys_link.spec -y -- -d && pyinstaller.exe ephys_link.spec -y"
@@ -79,8 +79,8 @@ installer = "uv"
7979
python = "3.13"
8080
skip-install = true
8181
dependencies = [
82-
"mkdocs-material==9.6.11",
83-
"mkdocstrings-python==1.16.10",
82+
"mkdocs-material==9.6.19",
83+
"mkdocstrings-python==1.18.2",
8484
"mkdocs-gen-files==0.5.0",
8585
"mkdocs-literate-nav==0.6.2",
8686
"mkdocs-section-index==0.3.10"

0 commit comments

Comments
 (0)