Skip to content

Commit c8280dc

Browse files
authored
Merge pull request #117 from chennesy/resolved
major lesson update
2 parents 9351d4a + 1ab956f commit c8280dc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+5404
-4739
lines changed

.github/workflows/README.md

100755100644
File mode changed.

.github/workflows/pr-close-signal.yaml

100755100644
File mode changed.

.github/workflows/pr-comment.yaml

100755100644
File mode changed.

.github/workflows/pr-post-remove-branch.yaml

100755100644
File mode changed.

.github/workflows/pr-preflight.yaml

100755100644
File mode changed.

.github/workflows/pr-receive.yaml

100755100644
File mode changed.

.github/workflows/sandpaper-main.yaml

100755100644
File mode changed.

.github/workflows/update-cache.yaml

100755100644
File mode changed.

.github/workflows/update-workflows.yaml

100755100644
File mode changed.

README.md

+23-41
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,44 @@
1-
# Library Carpentry
1+
# Library Carpentry: Python Intro for Libraries
22

3-
The Library Carpentry module '[Introduction to programming with Python](https://librarycarpentry.org/lc-python-intro/)' is maintained by [Konrad Foerstner](https://github.com/konrad), [Drew Heles](https://github.com/dheles), [Elizabeth Wickes](https://github.com/elliewix), *[Laura Wrubel](https://github.com/lwrubel)*, [Carlos Martinez](https://github.com/c-martinez) and [Richard Vankoningsveld](https://github.com/richyvk).
3+
## Maintainers for Library Carpentry: Python Intro for Libraries
4+
- [Cody Hennesy](https://github.com/chennesy) (lead)
5+
- [Tim Dennis](https://github.com/jt14den)
46

5-
## Status Note
7+
The updated version of this lesson (June 2024) was developed with the assistance of [David Palmquist](https://github.com/quist00) and [Scott Peterson](https://github.com/scottcpeterson).
68

7-
The maintainers of this lesson are currently working on a substantial redesign of this lesson. This means than large portions of the current lesson content will be removed or substantially rewritten. You are welcome to submit pull requests for changes that help make this lesson better in the short run, but please keep in mind that the changes you make may be on content slated for removal.
9+
Lesson Maintainers communication is via the [team site](https://github.com/orgs/LibraryCarpentry/teams/lc-python-intro-maintainers).
810

9-
## Background
11+
## Past Maintainers for Library Carpentry: Python Intro for Libraries
12+
- [Konrad Foerstner](https://github.com/konrad)
13+
- [Drew Heles](https://github.com/dheles)
14+
- [Elizabeth Wickes](https://github.com/elliewix)
15+
- [Laura Wrubel](https://github.com/lwrubel)
16+
- [Carlos Martinez](https://github.com/c-martinez)
17+
- [Richard Vankoningsveld](https://github.com/richyvk)
1018

11-
Library Carpentry is a software skills training programme aimed at library and information professions. It builds on the work of [Software Carpentry](https://software-carpentry.org/) and [Data Carpentry](https://www.datacarpentry.org/).
19+
## Library Carpentry
1220

13-
Library Carpentry is in the commons and for the commons. It is not tied to any institution of person. For more information on Library Carpentry, see our website [librarycarpentry.org](https://librarycarpentry.org/).
21+
[Library Carpentry](https://librarycarpentry.org) is a software and data skills training programme for people working in library- and information-related roles. It builds on the work of [Software Carpentry](https://software-carpentry.org/) and [Data Carpentry](https://www.datacarpentry.org/). Library Carpentry is an official Lesson Program of [The Carpentries](https://carpentries.org/).
1422

15-
## Contribution
23+
## License
1624

17-
There are many ways of contributing to Library Carpentry:
25+
All Software, Data, and Library Carpentry instructional material is made available under the [Creative Commons Attribution
26+
license](LICENSE.md).
1827

19-
- Join our [Gitter discussion forum](https://gitter.im/weaverbel/LibraryCarpentry).
20-
- Follow updates on [Twitter](https://twitter.com/search?f=tweets&vertical=default&q=%23librarycarpentry&src=typd).
21-
- Make a suggestion or correct an error by [raising an Issue](https://github.com/LibraryCarpentry/lc-python-intro/issues).
28+
## Contributing
2229

23-
### Local Lesson Development
24-
25-
If you wish to contribute changes or additions to this module, you'll want to
26-
setup a local development environment that allows you to easily test changes
27-
locally. In order to do this, you'll want to do the following:
28-
29-
1. [Fork this repository](https://help.github.com/articles/fork-a-repo/)
30-
2. Clone your fork of the repository:
31-
32-
```
33-
git clone https://github.com/<your-github-username>/lc-python-intro.git
34-
```
35-
36-
1. [Install Ruby](https://www.ruby-lang.org/en/downloads/)
37-
2. Install Jekyll `gem install jekyll`
38-
3. Run the Jekyll server locally
39-
40-
```
41-
cd <path-to>/lc-python-intro
42-
make serve
43-
```
44-
45-
1. Browse to your local server: [http://localhost:4000/](https://localhost:4000/)
46-
2. The `Makefile` has other options as well. To see them type `make`
30+
There are many ways to discuss and contribute to Library Carpentry lessons. The easiest way to get started is to [file an issue](https://github.com/LibraryCarpentry/lc-python-intro/issues) to tell us about a spelling mistake, some awkward wording, or a factual error. This is a good way to introduce yourself and to meet some of our community members. See [Contributing](CONTRIBUTING.md) for more information about contributing Pull Requests and connecting with others in the Carpentries.
4731

4832
## Code of Conduct
4933

50-
All participants should agree to abide by the [Software Carpentry Code of Conduct](https://software-carpentry.org/conduct/).
34+
All participants should agree to abide by The Carpentries [Code of Conduct](https://docs.carpentries.org/topic_folders/policies/code-of-conduct.html).
5135

5236
## Authors
5337

54-
Library Carpentry is authored and maintained by the [community](https://github.com/LibraryCarpentry/lc-python-intro/network/members).
38+
Library Carpentry is authored and maintained through issues, commits, and pull requests from the community.
5539

5640
## Citation
5741

58-
Please cite as:
59-
60-
Library Carpentry. Introduction to programming with Python. 2017. [https://librarycarpentry.org/lc-python-intro/](https://librarycarpentry.org/lc-python-intro/).
42+
(Add citation once Zenodo is updated)
6143

6244

config.yaml

+17-19
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ keywords: 'software, data, lesson, The Carpentries'
2121

2222
# Life cycle stage of the lesson
2323
# possible values: pre-alpha, alpha, beta, stable
24-
life_cycle: 'alpha'
24+
life_cycle: 'beta'
25+
2526

2627
# License of the lesson materials (recommended CC-BY 4.0)
2728
license: 'CC-BY 4.0'
@@ -59,23 +60,20 @@ contact: '[email protected]'
5960

6061
# Order of episodes in your lesson
6162
episodes:
62-
- 01-getting-started.md
63-
- 02-variables.md
64-
- 03-types-conversion.md
65-
- 04-built-in.md
66-
- 05-coffee.md
67-
- 06-libraries.md
68-
- 10-lunch.md
69-
- 11-lists.md
70-
- 12-for-loops.md
71-
- 13-looping-data-sets.md
72-
- 14-writing-functions.md
73-
- 15-scope.md
74-
- 16-coffee.md
75-
- 17-conditionals.md
76-
- 18-style.md
77-
- 19-wrap.md
78-
- 20-feedback.md
63+
- getting-started.md
64+
- variables.md
65+
- lists.md
66+
- functions.md
67+
- libraries.md
68+
- for-loops.md
69+
- looping-data-sets.md
70+
- pandas.md
71+
- conditionals.md
72+
- writing-functions.md
73+
- tidy.md
74+
- data-visualisation.md
75+
- wrap.md
76+
7977

8078
# Information for Learners
8179
learners:
@@ -92,6 +90,6 @@ profiles:
9290
# sandpaper and varnish versions) should live
9391

9492

95-
url: 'https://librarycarpentry.github.io/lc-python-intro'
93+
url: https://librarycarpentry.github.io/lc-python-intro
9694
analytics: carpentries
9795
lang: en

episodes/01-getting-started.md

-133
This file was deleted.

0 commit comments

Comments
 (0)