Update repo name

This commit is contained in:
Angelos Chalaris
2019-08-21 10:39:09 +03:00
parent a17702aa55
commit 7f1c46dadc
8 changed files with 314 additions and 314 deletions

View File

@ -25,7 +25,7 @@ upload_files() {
if [ $TRAVIS_EVENT_TYPE != "pull_request" ]; then
if [ $TRAVIS_BRANCH == "master" ]; then
echo "Pushing to master branch..."
git push --force --quiet "https://${GH_TOKEN}@github.com/30-seconds/30-seconds-of-python-code.git" master > /dev/null 2>&1
git push --force --quiet "https://${GH_TOKEN}@github.com/30-seconds/30-seconds-of-python.git" master > /dev/null 2>&1
fi
fi
}

View File

@ -13,7 +13,7 @@ As a member of the team that manages **30 seconds of python code**, you have the
## Guidelines for merging pull requests and making changes to the project
- **[Usual guidelines](https://github.com/30-seconds/30-seconds-of-python-code/blob/master/CONTRIBUTING.md) apply.** Make sure to follow them, like everybody else.
- **[Usual guidelines](https://github.com/30-seconds/30-seconds-of-python/blob/master/CONTRIBUTING.md) apply.** Make sure to follow them, like everybody else.
- **For a pull request to be considered ready to merge, there should be at least 2 (preferably 3) reviews approving it for merge.** There are, however, certain exceptions:
- **If a pull request only fixes typos**, there is no need to wait for a second reviewer (unless you are not certain these were not typos in the first place).
- **If a pull request only clarifies a snippet's description or enforces the style guide for an existing snippet**, you might be able to merge it without getting a second reviewer to review it, but only if you are certain about it.

View File

@ -4,11 +4,11 @@
Here's what you can do to help:
- [Open issues](https://github.com/30-seconds/30-seconds-of-python-code/issues/new) for things you want to see added or modified.
- Be part of the discussion by helping out with [existing issues](https://github.com/30-seconds/30-seconds-of-python-code/issues) or talking on our [gitter channel](https://gitter.im/30-seconds-of-python-code/Lobby).
- Submit [pull requests](https://github.com/30-seconds/30-seconds-of-python-code/pulls) with snippets you have created (see below for guidelines).
- [Open issues](https://github.com/30-seconds/30-seconds-of-python/issues/new) for things you want to see added or modified.
- Be part of the discussion by helping out with [existing issues](https://github.com/30-seconds/30-seconds-of-python/issues) or talking on our [gitter channel](https://gitter.im/30-seconds-of-python/Lobby).
- Submit [pull requests](https://github.com/30-seconds/30-seconds-of-python/pulls) with snippets you have created (see below for guidelines).
- Fix typos in existing snippets, improve snippet descriptions and explanations or provide better examples.
- Before submitting a PR for any new snippets go through [this](https://github.com/30-seconds/30-seconds-of-python-code/projects/1) project. If your snippet is not there, then go ahead and submit a PR. Else if it is in the done column, sorry it has been already implemented. If it is in any other column submit a PR and give the card's link in the description section of PR.
- Before submitting a PR for any new snippets go through [this](https://github.com/30-seconds/30-seconds-of-python/projects/1) project. If your snippet is not there, then go ahead and submit a PR. Else if it is in the done column, sorry it has been already implemented. If it is in any other column submit a PR and give the card's link in the description section of PR.
- **Working on your first Pull Request?** You can learn how from this *free* series [How to Contribute to an Open Source Project on GitHub](https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github)
### Snippet submission and Pull request guidelines

604
README.md

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@ module.exports = {
name: `30 seconds of python`,
description: `A curated collection of useful Python snippets that you can understand in 30 seconds or less.`,
shortName: `30s`,
repositoryUrl: `https://github.com/30-seconds/30-seconds-of-python-code`,
repositoryUrl: `https://github.com/30-seconds/30-seconds-of-python`,
// Path information
snippetPath: `snippets`,
snippetDataPath: `snippet_data`,

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "30-seconds-of-python-code",
"name": "30-seconds-of-python",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "30-seconds-of-python-code",
"name": "30-seconds-of-python",
"version": "1.0.0",
"description": "A curated collection of useful Python snippets that you can understand in 30 seconds or less.",
"main": "config.js",
@ -12,14 +12,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/30-seconds/30-seconds-of-python-code.git"
"url": "git+https://github.com/30-seconds/30-seconds-of-python.git"
},
"author": "Stefan Fejes (ns.fejes.stefan@gmail.com)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/30-seconds/30-seconds-of-pythong-code/issues"
},
"homepage": "https://github.com/30-seconds/30-seconds-of-python-code",
"homepage": "https://github.com/30-seconds/30-seconds-of-python",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.5.4",

View File

@ -1,6 +1,6 @@
![Logo](/icon.png)
## 30-seconds-of-python-code
## 30-seconds-of-python
> Curated collection of useful Python snippets that you can understand in 30 seconds or less.