Skip to content

Commit acd40a9

Browse files
authored
Merge pull request #342 from bluesky/updated-to-latest-copier
updated from copier template
2 parents 47e8d54 + 2ff45a6 commit acd40a9

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 2.4.0
2+
_commit: 2.6.0
33
_src_path: gh:DiamondLightSource/python-copier-template
44
author_email: [email protected]
55
author_name: Brookhaven National Lab

.devcontainer/devcontainer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
}
2929
},
3030
"features": {
31-
// Some default things like git config
32-
"ghcr.io/devcontainers/features/common-utils:2": {
33-
"upgradePackages": false
34-
}
31+
// add in eternal history and other bash features
32+
"ghcr.io/diamondlightsource/devcontainer-features/bash-config:1.0.0": {}
3533
},
34+
// Create the config folder for the bash-config feature
35+
"initializeCommand": "mkdir -p ${localEnv:HOME}/.config/bash-config",
3636
"runArgs": [
3737
// Allow the container to access the host X11 display and EPICS CA
3838
"--net=host",

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ Hints to make the integration of your changes easy (and happen faster):
7575
* All algorithms need documentation, don't forget the .rst file
7676
* Don't take changes requests to change your code personally
7777

78-
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/2.4.0/how-to.html).
78+
For more information on common tasks like setting up a developer environment, running the tests, and setting a pre-commit hook, see the template's [How-to guides](https://diamondlightsource.github.io/python-copier-template/2.6.0/how-to.html).

.github/workflows/_pypi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ jobs:
1515

1616
- name: Publish to PyPI using trusted publishing
1717
uses: pypa/gh-action-pypi-publish@release/v1
18+
with:
19+
attestations: false

.github/workflows/_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Create GitHub Release
2424
# We pin to the SHA, not the tag, for security reasons.
2525
# https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions
26-
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # v2.0.8
26+
uses: softprops/action-gh-release@e7a8f85e1c67a31e6ed99a94b41bd0b71bbee6b8 # v2.0.9
2727
with:
2828
prerelease: ${{ contains(github.ref_name, 'a') || contains(github.ref_name, 'b') || contains(github.ref_name, 'rc') }}
2929
files: "*"

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ This repository contains the formal schemas for bluesky's streaming data model
1515
and some Python tooling for composing, validating, and transforming documents
1616
in the model.
1717

18+
Source | <https://github.com/bluesky/event-model>
19+
:---: | :---:
20+
PyPI | `pip install event-model`
21+
Documentation | <https://bluesky.github.io/event-model>
22+
Releases | <https://github.com/bluesky/event-model/releases>
23+
1824
## Where is my data?
1925

2026
For the full details and schema please see the `data_model` section. This is a very quick guide to where
@@ -32,4 +38,4 @@ you should look for / put different kinds of information
3238

3339
<!-- README only content. Anything below this line won't be included in index.md -->
3440

35-
See https://bluesky.github.io/event-model for more detailed documentation.
41+
See <https://bluesky.github.io/event-model> for more detailed documentation.

0 commit comments

Comments
 (0)