Skip to content

Commit

Permalink
Merge pull request #1 from delenamalan/delena-upgrade-to-python-3
Browse files Browse the repository at this point in the history
Support Python 3
  • Loading branch information
jbothma authored Feb 6, 2020
2 parents c9a4a1f + 66a9bc2 commit efa9482
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: python
python:
- "2.7"
- "3.7"

install:
- "pip install -e .[test]"
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.1.0',
version='0.1.1',

description='Scrapers for data from the South African Parliament',
long_description=long_description,
Expand Down Expand Up @@ -47,8 +47,8 @@
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],

# You can just specify the packages manually here if your project is
Expand All @@ -60,7 +60,7 @@
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'mammoth >= 0.3.19',
'mammoth >= 0.3.19, < 0.3.31',
'beautifulsoup4 >= 4.4.0',
],

Expand Down
Loading

0 comments on commit efa9482

Please sign in to comment.