Skip to content

Commit 168b1b8

Browse files
committed
Switch supported python to 3
1 parent 35f0ffb commit 168b1b8

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.pyc
22
__pycache__
33
.cache
4+
.pytest_cache
45
build
56
dist
67
flourish.egg-info

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- '2.7'
3+
- '3.6'
44

55
script: sh tests/run.sh -v
66

documentation/release-notes.markdown

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
# Release notes for Flourish
44

5-
## as yet unreleased
5+
## 0.7 — UNRELEASED
66

77
* Make two [functions available in templates][fn]`url` to get URLs,
88
`lookup` to fetch source data.
99
* Provide ways of [linking sources together][ln].
1010
* Markdown [front matter][as] can now also be surrounded by backticks
1111
(`` ``` ``) in addition to the default hyphens (`---`), in order for them
1212
to render better in some Markdown previews (eg GitHub).
13+
* Alters the code to work under python 3.6, dropping support for python 2.
1314

1415
[fn]: http://flourish.readthedocs.io/en/latest/template-functions/
1516
[ln]: http://flourish.readthedocs.io/en/latest/linking-sources/

flourish/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.6'
1+
__version__ = '0.7.0'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
'License :: OSI Approved :: MIT License',
3838

39-
'Programming Language :: Python :: 2',
39+
'Programming Language :: Python :: 3',
4040

4141
'Topic :: Software Development :: Build Tools',
4242
'Topic :: Software Development :: Code Generators',

0 commit comments

Comments
 (0)