Skip to content

Commit

Permalink
Merge pull request #78 from CartoDB/1_2_1_release
Browse files Browse the repository at this point in the history
1.2.1 release
  • Loading branch information
juanignaciosl committed Feb 27, 2018
2 parents b792fa7 + 5d13d29 commit 0673bf4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## Submitting Contributions

Contributions are totally welcome. However, contributors must sign a Contributor License Agreement (CLA) before making a submission. [Learn more here.](https://carto.com/contributing)

## Release process

1. You must be maintainer at [carto pypi repo](https://pypi.python.org/pypi/carto/).
2. Prepare a `~/.pypirc` file:

```
[distutils]
index-servers =
pypi
pypitest
[pypi]
username=your_username
password=your_password
[pypitest]
username=your_username
password=your_password
```

3. Upload the package to the test repository: `python setup.py sdist upload -r pypitest`.
4. Install it in a new environment: `pip install --index-url=https://test.pypi.org/simple --extra-index-url=https://pypi.org/simple carto`.
5. Test it.
6. Release it: `python setup.py sdist upload -r pypi`.
1 change: 1 addition & 0 deletions carto/auth.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
"""
Module for authenticated access to CARTO's APIs
Expand Down

0 comments on commit 0673bf4

Please sign in to comment.