-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into protocols/smtp_client
- Loading branch information
Showing
182 changed files
with
1,031 additions
and
620 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Deploy Workflow | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
jobs: | ||
build: | ||
name: Build | ||
strategy: | ||
matrix: | ||
python-version: [2.7] | ||
runs-on: ubuntu-latest | ||
container: python:${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: python --version | ||
- run: pip install -r requirements.txt | ||
- run: HTTPBIN=httpbin.bemisc.com python setup.py test | ||
- run: pip install twine wheel | ||
- run: python setup.py sdist bdist_wheel | ||
- run: python -m twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/* | ||
env: | ||
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Main Workflow | ||
on: [push] | ||
jobs: | ||
build: | ||
name: Build | ||
strategy: | ||
matrix: | ||
python-version: [2.7, 3.5, 3.6, 3.7, rc] | ||
runs-on: ubuntu-latest | ||
container: python:${{ matrix.python-version }} | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- run: python --version | ||
- run: pip install -r requirements.txt | ||
- run: HTTPBIN=httpbin.bemisc.com python setup.py test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
* | ||
|
||
### Changed | ||
|
||
* | ||
|
||
### Fixed | ||
|
||
* | ||
|
||
## [1.18.2] - 2021-05-01 | ||
|
||
### Added | ||
|
||
* Support for `redirect_regex` in `proxy_r` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.