Skip to content

Commit

Permalink
Merge 77949e9 into 2334943
Browse files Browse the repository at this point in the history
  • Loading branch information
dom-nie committed Oct 31, 2019
2 parents 2334943 + 77949e9 commit aa5f3bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 12 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
@@ -1,18 +1,15 @@
dist: xenial
language: python
python:
- &latest_py2 2.7
- 3.5
- 3.6
- &latest_py3 3.7
- 3.7
- &latest_py3 3.8

jobs:
fast_finish: true
include:
- python: *latest_py3
env: LANG=C
- python: *latest_py2
env: LANG=C
- stage: deploy (to PyPI for tagged commits)
if: tag IS present
python: *latest_py3
Expand Down
7 changes: 3 additions & 4 deletions README.md
Expand Up @@ -13,10 +13,9 @@ As of version 0.1.0 and higher, Puppetboard **requires** PuppetDB 3. Version 0.3

At the current time of writing, Puppetboard supports the following Python versions:

* Python 2.7 (NB! [Python 2.7 is deprecated and should not be used](https://pythonclock.org/))
* Python 3.5
* Python 3.6
* Python 3.7
* Python 3.8

![View of a node](screenshots/overview.png)

Expand Down Expand Up @@ -330,7 +329,7 @@ Here is a sample configuration for Fedora:
CustomLog logs/puppetboard-access_log combined
Alias /static /usr/lib/pythonX.Y/site-packages/puppetboard/static
<Directory /usr/lib/python2.X/site-packages/puppetboard/static>
<Directory /usr/lib/pythonX.Y/site-packages/puppetboard/static>
Satisfy Any
Allow from all
</Directory>
Expand Down Expand Up @@ -533,7 +532,7 @@ import multiprocessing
bind = '127.0.0.1:9090'
workers = multiprocessing.cpu_count() * 2 + 1
chdir = '/usr/lib/python2.7/site-packages/puppetboard'
chdir = '/usr/lib/pythonX.Y/site-packages/puppetboard'
raw_env = ['PUPPETBOARD_SETTINGS=/var/www/puppetboard/settings.py', 'http_proxy=']
```

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Expand Up @@ -66,11 +66,9 @@ def run_tests(self):
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)

0 comments on commit aa5f3bc

Please sign in to comment.