Skip to content

Commit b53a2a2

Browse files
Merge remote-tracking branch 'upstream/master'
2 parents 58e598b + de1bb67 commit b53a2a2

File tree

7 files changed

+91
-9
lines changed

7 files changed

+91
-9
lines changed

_posts/2018-10-16-hacktoberfest.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
category: "london"
3+
title: "Hacktoberfest sprint"
4+
level: "All"
5+
time: "18:00"
6+
rsvp_link: https://www.meetup.com/Python-Sprints/events/255191480/
7+
project:
8+
sponsor: monzo
9+
---
10+
11+
The London Python sprints group started a year ago, and since then we
12+
organised more than 20 sprints. Contributing to projects such as pandas,
13+
dateutil, Tornado, or the python.org website.
14+
15+
This time we will be participating in the [Hacktoberfest](https://hacktoberfest.digitalocean.com/).
16+
No matter if this is your first sprint or if you are a seasoned sprinter with us, everyone is welcome.
17+
18+
The Hacktoberfest is a great way to get started with contributing to open-source and you even
19+
get to win a t-shirt if you contribute 5 pull requests by the end of October.
20+
21+
Rules from the website:
22+
To get a shirt, you must make five pull requests (PRs) between October 1–31 in any timezone.
23+
PRs can be to any public repo on GitHub, not just the ones highlighted.
24+
The PR must contain commits you made yourself.
25+
PRs reported by maintainers as spam or that are automated will be marked as invalid and won't count towards the shirt.
26+
This year, the first 50,000 of you can earn a T-shirt (compared with 30,000 in 2017).
27+
28+
There will be a few of us present to get you started so make sure you secure yourself a spot.
29+
30+
Remember to:
31+
32+
- Bring your own laptop
33+
- Check out the [Hacktoberfest](https://hacktoberfest.digitalocean.com/) website if you want to get an early start.
34+
- Join the [Gitter channel](https://gitter.im/py-sprints/hacktoberfest2018) of the sprint

_posts/2018-11-14-django.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
category: "london"
3+
title: "Django sprint"
4+
level: "All"
5+
time: "18:00"
6+
rsvp_link: https://www.meetup.com/Python-Sprints/events/256176141/
7+
project:
8+
sponsor: teksystems
9+
---
10+
11+
The London Python sprints group started a year ago, and since then we
12+
organised more than 20 sprints. Contributing to projects such as pandas,
13+
dateutil, Tornado, or the python.org website.
14+
15+
This time the theme will be [Django](https://www.djangoproject.com/), one of the most popular free and open-source web framework, written in Python.
16+
17+
"Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source."
18+
19+
We will be working on Django and other related projects. If you have an open source project using the Django framework, you are also welcome to bring along and sprint on it with the others.
20+
21+
No matter if this is your first sprint or if you are a seasoned sprinter with us, everyone is welcome.
22+
23+
Remember to:
24+
25+
- Bring your own charged laptop
26+
- Check out the [Django Contributing Guide](https://docs.djangoproject.com/en/dev/internals/contributing/) if you want to get an early start.
27+
- Join the [Gitter channel](https://gitter.im/py-sprints/django) of the sprint
28+
29+
Useful links to go though before coming to the sprint:
30+
31+
- [Django bug tracker](https://code.djangoproject.com/)
32+
- [Contributers guide](https://docs.djangoproject.com/en/2.1/internals/contributing/)
33+
- We are going to be picking up issues from [here](https://code.djangoproject.com/wiki/Reports)
34+
35+
Special thanks to Çağıl Uluşahin [@cagilulusahin](https://twitter.com/cagilulusahin?lang=en) to be our mentor for this sprint.

_sponsors/monzo.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
obj_id: monzo
3+
name: "Monzo"
4+
logo: static/images/sponsors/monzo.png
5+
link: https://monzo.com/
6+
address: "35 Wilson St, EC2A 2ER"
7+
lat: 51.5200705
8+
lng: -0.0877098
9+
---
10+
Monzo is the bank of the future. This isn’t banking as you know it. Monzo is a bank for everyone, that works with you, for you.

_sponsors/teksystems.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
obj_id: teksystems
3+
name: "TEKsystems"
4+
logo: static/images/sponsors/teksystems.png
5+
link: https://europe.teksystems.com/en-gb
6+
address: "Floor 3, The Warehouse, 207-211 Old St, London EC1V 9NR"
7+
lat: 51.5259343
8+
lng: -0.090919
9+
---
10+
Through the thousands of client IT initiatives we support globally, our daily interactions with local IT markets and our proprietary research on the state of the IT workforce, we possess a deep and practical understanding of what works, what doesn’t and what’s possible in IT. We harness this understanding to supply our clients with the people they need and the human capital advice required to optimise how work gets done. Based on what we’ve seen work consistently in practice, we also offer a range of select IT services spanning applications, infrastructure, communications and digital and creative needs. By customising and calibrating our service delivery models, we free our clients from owning resources, workflows, functions or complexity that they don’t want or need to manage. Additionally, by ensuring every TEKsystems professional is the absolute best suited for the job at hand, we empower our clients to achieve their business targets better, faster and more cost-effectively.​

pandas/guide/source/pandas_setup.rst

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -104,19 +104,12 @@ To fetch the latest updates from the pandas repository, follow the steps in
104104

105105
* Create a conda environment: ::
106106

107-
conda env create -n pandas_dev -f <path-to-pandas-dir>/ci/environment-dev.yaml
108-
109-
.. note::
110-
**Windows users**: If you're copy-pasting the path, replace all pasted
111-
``\`` characters with ``/`` for the command to work.
107+
conda env create
112108

113109
* Activate the new conda environment: ::
114110

115-
source activate pandas_dev
116-
117-
* Install pandas development dependencies: ::
111+
source activate pandas-dev
118112

119-
conda install -c defaults -c conda-forge --file=<path-to-pandas-dir>/ci/requirements-optional-conda.txt
120113

121114
4. Compile C code in pandas
122115
~~~~~~~~~~~~~~~~~~~~~~~~~~~

static/images/sponsors/monzo.png

4.05 KB
Loading
15.6 KB
Loading

0 commit comments

Comments
 (0)