Skip to content

Commit 729e9a2

Browse files
authored
Merge pull request hed-standard#1102 from VisLab/develop
Merging in the process of getting rid of develop
2 parents fbc0f99 + 28c2157 commit 729e9a2

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
steps:
1515
- id: set-matrix
1616
run: |
17-
if [[ "${{ github.event_name }}" == 'push' && "${{ github.ref }}" == 'refs/heads/master' ]]; then
18-
# Push to master branch
17+
if [[ "${{ github.event_name }}" == 'push' && "${{ github.ref }}" == 'refs/heads/main' ]]; then
18+
# Push to main branch
1919
echo 'matrix=["3.9", "3.10", "3.11", "3.12", "3.13"]' >> $GITHUB_OUTPUT
20-
elif [[ "${{ github.event_name }}" == 'pull_request' && "${{ github.event.pull_request.base.ref }}" == 'master' ]]; then
21-
# PR to master branch
20+
elif [[ "${{ github.event_name }}" == 'pull_request' && "${{ github.event.pull_request.base.ref }}" == 'main' ]]; then
21+
# PR to main branch
2222
echo 'matrix=["3.9", "3.10", "3.11", "3.12", "3.13"]' >> $GITHUB_OUTPUT
2323
else
2424
echo 'matrix=["3.9", "3.13"]' >> $GITHUB_OUTPUT

.github/workflows/ci_windows.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI Windows
22

33
on:
44
push:
5-
branches: ["main", "master"]
5+
branches: ["main"]
66
pull_request:
7-
branches: ["main", "master"]
7+
branches: ["main"]
88

99
jobs:
1010
build:

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Deploy Documentation
22

33
on:
44
push:
5-
branches: [ main, master, develop ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ main, master, develop ]
7+
branches: [ main ]
88

99
permissions:
1010
contents: read
@@ -24,12 +24,12 @@ jobs:
2424
fetch-depth: 0
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: '3.9'
3030

3131
- name: Cache dependencies
32-
uses: actions/cache@v3
32+
uses: actions/cache@v4
3333
with:
3434
path: ~/.cache/pip
3535
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Use `pip` to install `hedtools` from PyPI:
3232
```
3333

3434
To install directly from the
35-
[GitHub](https://github.com/hed-standard/hed-python) repository `master` branch:
35+
[GitHub](https://github.com/hed-standard/hed-python) repository `main` branch:
3636

3737
```
38-
pip install git+https://github.com/hed-standard/hed-python/@master
38+
pip install git+https://github.com/hed-standard/hed-python/@main
3939
```
4040

4141
The HEDTools in this repository require Python 3.8 or greater.
@@ -57,22 +57,22 @@ the official HED schemas. The tools access this repository to retrieve and cache
5757
during execution. Starting with `hedtools 0.2.0` local copies of the most recent schema versions
5858
are stored within the code modules for easy access.
5959

60-
#### Develop versus master versus stable branches
60+
#### Develop versus main versus stable branches
6161

6262
The `hed-python` repository
6363

64-
| Branch | Meaning | Synchronized with |
65-
| ------ | -------- | ------------------ |
66-
| stable | Officially released on PyPI as a tagged version. | `stable@hed-web`<br/>`stable@hed-specification`<br/>`stable@hed-examples` |
67-
| latest | Most recent usable version. | `latest@hed-web`<br/>`latest@hed-specification`<br/>`latest@hed-examples` |
64+
| Branch | Meaning | Synchronized with |
65+
|---------| -------- | ------------------ |
66+
| stable | Officially released on PyPI as a tagged version. | `stable@hed-web`<br/>`stable@hed-specification`<br/>`stable@hed-examples` |
67+
| main | Most recent usable version. | `latest@hed-web`<br/>`latest@hed-specification`<br/>`latest@hed-examples` |
6868
| develop | Experimental and evolving. | `develop@hed-web`<br/>`develop@hed-specification`<br/>`develop@hed-examples` |
6969

7070
As features are integrated, they first appear in the `develop` branches of the
7171
repositories.
7272
The `develop` branches of the repositories will be kept in sync as much as possible
7373
If an interface change in `hed-python` triggers a change in `hed-web` or `hed-examples`,
7474
every effort will be made to get the three types of branches
75-
(`develop`, `latest`, `stable`) of the respective repositories in
75+
(`develop`, `main`, `stable`) of the respective repositories in
7676
sync.
7777

7878
API documentation is generated on ReadTheDocs when a new version is
@@ -86,7 +86,7 @@ Please use the [Github issues](https://github.com/hed-standard/hed-python/issues
8686
for suggestions or bug reports.
8787
The [Github pull request](https://github.com/hed-standard/hed-python/pulls)
8888
may also be used for contributions.
89-
These PRs should be made to the `develop` branch, not the `master` branch.
89+
These PRs should be made to the `main` branch but should have a branch name other than `main`.
9090

9191
#### Local Settings Storage
9292
Cached Schemas by default are stored in "home/.hedtools/"

0 commit comments

Comments
 (0)