Skip to content

Commit ba97c2b

Browse files
Fix format for linter (#231)
* Format linter fix * Fix format for linter
1 parent 0de2b1b commit ba97c2b

File tree

12 files changed

+54
-59
lines changed

12 files changed

+54
-59
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
We would love your help!
44

55
Feel free to submit patches, issues, feature requests, and pull requests on the
6-
`GitHub repository <https://github.com/scientific-python/scientific-python.org>`_.
6+
[GitHub repository](https://github.com/scientific-python/scientific-python.org).
77

88
## How to submit an issue
99

@@ -56,7 +56,7 @@ Scientific Python projects using GitHub pull requests.
5656

5757
- Go to GitHub. The new branch will show up with a green Pull Request (PR) button---click it.
5858

59-
5. Review process:
59+
4. Review process:
6060

6161
- Every PR update triggers a set of
6262
[continuous integration](https://en.wikipedia.org/wiki/Continuous_integration)
@@ -114,5 +114,5 @@ Once you've fixed all merge conflicts, do:
114114

115115
git commit
116116

117-
**_NOTE:_** Advanced Git users may want to rebase instead of merge, but we squash
117+
**_NOTE:_** Advanced Git users may want to rebase instead of merge, but we squash
118118
and merge PRs either way.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export GH_TOKEN=<personal-access-token>
3838

3939
Then run `make teams`.
4040

41-
4241
## Analytics
4342

4443
A self-hosted version of [Plausible.io](https://plausible.io) is used to gather simple

archetypes/default.md

-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ title: "{{ replace .Name "-" " " | title }}"
33
date: {{ .Date }}
44
draft: true
55
---
6-

calendars/matplotlib.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Matplotlib Community Calendar
2-
timezone: Europe/Berlin
2+
timezone: Europe/Berlin
33
events:
44
- summary: Weekly Matplotlib Call
55
description: |

config.yaml

+34-34
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: Scientific Python
2-
baseURL: 'https://scientific-python.org'
2+
baseURL: "https://scientific-python.org"
33
languageCode: en-us
44
theme: scientific-python-hugo-theme
55
DefaultContentLanguage: en
@@ -13,7 +13,7 @@ params:
1313
description: Community developed and owned ecosystem for scientific computing
1414

1515
images:
16-
- /images/logo.svg
16+
- /images/logo.svg
1717

1818
plausible:
1919
dataDomain: scientific-python.org
@@ -24,8 +24,8 @@ params:
2424

2525
style:
2626
vars:
27-
highlightColor: '#004811'
28-
menuHighlightColor: '#5ca038'
27+
highlightColor: "#004811"
28+
menuHighlightColor: "#5ca038"
2929

3030
navbarlogo:
3131
image: logo.svg
@@ -59,41 +59,41 @@ params:
5959

6060
keyfeatures:
6161
features:
62-
- title: Built on Python
63-
text: Python is a powerful, general-purpose programming language. The scientific Python ecosystem provides the tools that make Python the premier language for scientific computing.
64-
- title: Open source
65-
text: Distributed under unrestrictive open source licenses, projects are developed and maintained publicly and accessible to all.
66-
- title: Community-driven
67-
text: Projects are developed by open communities composed primarily of the users of the software.
68-
- title: Extensive and high quality
69-
text: The scientific Python ecosystem comprises performant, well-tested libraries providing tools for computing across all scientific domains.
70-
- title: Broadly applicable
71-
text: The ecosystem is widely used in scientific research and teaching.
72-
- title: Coordinated, readable, reproducible
73-
text: Projects in the ecosystem are completely interoperable, providing the basis for readable, reproducible scientific computation.
62+
- title: Built on Python
63+
text: Python is a powerful, general-purpose programming language. The scientific Python ecosystem provides the tools that make Python the premier language for scientific computing.
64+
- title: Open source
65+
text: Distributed under unrestrictive open source licenses, projects are developed and maintained publicly and accessible to all.
66+
- title: Community-driven
67+
text: Projects are developed by open communities composed primarily of the users of the software.
68+
- title: Extensive and high quality
69+
text: The scientific Python ecosystem comprises performant, well-tested libraries providing tools for computing across all scientific domains.
70+
- title: Broadly applicable
71+
text: The ecosystem is widely used in scientific research and teaching.
72+
- title: Coordinated, readable, reproducible
73+
text: Projects in the ecosystem are completely interoperable, providing the basis for readable, reproducible scientific computation.
7474

7575
footer:
7676
logo: logo.svg
7777
socialmediatitle: ""
7878
socialmedia:
79-
- link: https://scientific-python.org
80-
icon: scientific-python
81-
- link: https://github.com/scientific-python/
82-
icon: github
83-
- link: https://www.youtube.com/channel/UC2wKi87Wmy9C1OQMyD9fGxA
84-
icon: youtube
85-
- link: https://twitter.com/scientific_py
86-
icon: twitter
87-
- link: https://facebook.com/scientific.python
88-
icon: facebook
89-
- link: https://www.instagram.com/scientific.python/
90-
icon: instagram
91-
- link: https://www.tiktok.com/@scientific.python
92-
icon: tiktok
93-
- link: https://blog.scientific-python.org/atom.xml
94-
icon: rss-feed
95-
- link: https://discuss.scientific-python.org
96-
icon: discourse
79+
- link: https://scientific-python.org
80+
icon: scientific-python
81+
- link: https://github.com/scientific-python/
82+
icon: github
83+
- link: https://www.youtube.com/channel/UC2wKi87Wmy9C1OQMyD9fGxA
84+
icon: youtube
85+
- link: https://twitter.com/scientific_py
86+
icon: twitter
87+
- link: https://facebook.com/scientific.python
88+
icon: facebook
89+
- link: https://www.instagram.com/scientific.python/
90+
icon: instagram
91+
- link: https://www.tiktok.com/@scientific.python
92+
icon: tiktok
93+
- link: https://blog.scientific-python.org/atom.xml
94+
icon: rss-feed
95+
- link: https://discuss.scientific-python.org
96+
icon: discourse
9797

9898
quicklinks:
9999
column1:

content/about/governance.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Decisions about the future of the project are made through discussion with all m
5757
All non-sensitive project management discussion takes place on the [public forum](https://discuss.scientific-python.org).
5858
Occasionally, sensitive discussion may occur on a private list.
5959

60-
Scientific Python uses a *consensus seeking* process for making decisions.
60+
Scientific Python uses a _consensus seeking_ process for making decisions.
6161
The group tries to find a resolution that has no open objections among community managers.
6262
Community managers are expected to distinguish between fundamental objections to a proposal and minor perceived flaws that they can live with, and not hold up the decision making process for the latter.
6363
If no option can be found without an objection, the decision is escalated to the Community Leaders, who will themselves use consensus seeking to come to a resolution.

content/grants/inclusive_culture/_index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ authors: ["Melissa Weber Mendonça"]
88
date: 2021-08-21
99
---
1010

11-
1211
{{< page_gallery pages="." >}}
1312

1413
We are happy to announce the Chan Zuckerberg Initiative has [awarded a grant](https://chanzuckerberg.com/newsroom/czi-awards-16-million-for-foundational-open-source-software-tools-essential-to-biomedicine/) to support the onboarding, inclusion, and retention of people from historically marginalized groups on scientific Python projects, and to structurally improve the community dynamics for NumPy, SciPy, Matplotlib, and Pandas.
@@ -20,5 +19,5 @@ This is an ambitious project aiming to discover and implement activities that sh
2019
By establishing these new cross-project roles, we hope to introduce a new collaboration model to the Scientific Python communities, allowing community-building work within the ecosystem to be done more efficiently and with greater outcomes.
2120
We also expect to develop a clearer picture of what works and what doesn't in our projects to engage and retain new contributors, especially from historically underrepresented groups.
2221
Finally, we plan on producing detailed reports on the actions executed, explaining how they have impacted our projects in terms of representation and interaction with our communities.
23-
22+
2423
The two-year project is expected to start by November 2021, and we are excited to see the results from this work! [You can read the full proposal here](https://figshare.com/articles/online_resource/Advancing_an_inclusive_culture_in_the_scientific_Python_ecosystem/16548063).

content/news/_index.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
---
22
title: "News"
33
---
4-

content/news/specs-announced-scipy2021/video.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ Today, I am excited to introduce to you a new planning effort for
88
better coordinating the Scientific Python ecosystem.
99

1010
So, unlike the other talks in this session, this talk is not about one
11-
specific tool, but rather about *all* the tools and how they work
11+
specific tool, but rather about _all_ the tools and how they work
1212
together.
1313

1414
In the early days of the SciPy conference, we had fewer than 50
15-
attendees—and many of those were core library developers. So, it was
15+
attendees—and many of those were core library developers. So, it was
1616
easy to get everyone around a table and to talk about important decisions
1717
that affected several projects.
1818

19-
But that hasn't been possible for quite some time. Unsurprisingly then, one of the
19+
But that hasn't been possible for quite some time. Unsurprisingly then, one of the
2020
concerns we've heard from users is that the ecosystem sometimes lacks
2121
coherence.
2222

2323
And, to address that, we are launching an effort to get projects talking to
2424
one another again, to strategize about their joint future, and to make that future a reality.
2525

26-
-----
26+
---
2727

2828
Specifically, we have the following aims:
2929

@@ -35,12 +35,12 @@ Specifically, we have the following aims:
3535
5. to help projects develop their own grant proposals and to get
3636
funded.
3737

38-
-----
38+
---
3939

4040
We have started work on the first aim of the project: a
4141
mechanism through which the community can establish cross-project policies.
4242

43-
-----
43+
---
4444

4545
These policy documents we call SPECs: Scientific Python Ecosystem
4646
Coordination documents.
@@ -51,21 +51,21 @@ any of the other enhancement proposals---except that they will be relevant to mu
5151
These documents will be recommendations written up by the community,
5252
and their authority will derive from endorsement by popular libraries.
5353

54-
-----
54+
---
5555

5656
A SPEC has the following lifecycle.
5757

5858
First, it gets discussed on the Scientific Python Discussion Forum.
5959
We hope that this forum will eventually become a gathering place for
6060
many of the projects in the ecosystem.
6161

62-
-----
62+
---
6363

6464
Once it is clear that the idea has merit, it will become a Markdown
6565
document filed as a pull request on the scientific-python GitHub
6666
repository.
6767

68-
-----
68+
---
6969

7070
The SPEC will be guided through acceptance stages by community
7171
volunteers, known as the SPEC Steering Committee.
@@ -74,15 +74,15 @@ These are the current members of the committee, who have volunteered
7474
their time to help facilitate the SPEC process.
7575

7676
It should be noted that the emphasis is specifically on facilitation,
77-
rather than gatekeeping. Again, the SPECs will derive their authority
77+
rather than gatekeeping. Again, the SPECs will derive their authority
7878
from endorsement by projects in the ecosystem.
7979

80-
-----
80+
---
8181

8282
We thank these core projects who have agreed to serve as the
8383
initial SPEC endorsers.
8484

85-
-----
85+
---
8686

8787
If you have a great idea for improving the Scientific Python
8888
ecosystem, please don't hesitate to reach out!

content/press-kit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Press kit
33
sidebar: false
44
---
55

6-
We would like to make it easy for you to include the Scientific Python project identity in your next academic paper, course materials, or presentation.
6+
We would like to make it easy for you to include the Scientific Python project identity in your next academic paper, course materials, or presentation.
77

88
You will find SVG versions of the Scientific Python logo [here](https://github.com/scientific-python/archive/tree/main/branding/logo).
99
Note that by using the scientific-python.org resources, you accept the [Scientific Python Code of Conduct](/code_of_conduct).

content/roadmap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ prepare scientific Python for the next decade of data science.
1313
We provide resources, planning, and coordination for the community.
1414

1515
Our roadmap indicates the type of large, fundamental changes to individual projects
16-
and the ecosystem more generally that are likely to take months or years to realize.
16+
and the ecosystem more generally that are likely to take months or years to realize.
1717
Given the distributed decision-making processes of the ecosystem, progress on the
1818
roadmap is dependent on support and agreement from the community.
1919

content/summits/_index.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@
22
title: "Summits"
33
date: 2020-12-17T20:14:42-08:00
44
---
5-

0 commit comments

Comments
 (0)