Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ dist
build
*.pyc
*.egg-info
.idea
10 changes: 9 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@ language: python
python:
- "2.7" # Everything
- "3.4" # Debian 8 (Jessie) and Ubuntu 14.04 (Trusty)
- "3.5" # Debian 9 (Sid) and Ubuntu 16.04 (Xenial)
- "3.5" # Debian 9 (Stretch) and Ubuntu 16.04 (Xenial)
- "3.6" # Debian 10 (Buster), Ubuntu 17.10 (Artful) & 18.04 (Bionic)
- "3.7-dev" # Python alphas/betas

matrix:
fast_finish: true
allow_failures:
- python: "3.7-dev" # Alpha and beta versions can fail

script: python tests.py
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
### Fixed
- Fixed bug with map crashing loading of nginx.conf.

## [1.2.0] - 2017-09-06
### Fixed
- Fixed several bugs involving parsing of messy files and brace locations (thanks @lelik9!)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## python-nginx

![](https://travis-ci.org/peakwinter/python-nginx.svg?branch=master)
[![](https://travis-ci.org/peakwinter/python-nginx.svg?branch=master)](https://travis-ci.org/peakwinter/python-nginx)

A module for easily creating and modifying nginx serverblock configurations in Python (including comments!).

Expand Down
Loading