Skip to content

Commit

Permalink
Bump version to 0.4.2 (#26)
Browse files Browse the repository at this point in the history
* Update setup.py

* Update __init__.py

* Show support for Python 3.9

* Add tests for Python 3.9
  • Loading branch information
michadenheijer authored Dec 28, 2020
1 parent 6d202c1 commit 54785ba
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "pypy3"

install:
- pip install .

script:
- export NewYorkTimesAPIKey=$NewYorkTimesAPIKey
- python tests.py
- python tests.py
4 changes: 2 additions & 2 deletions pynytimes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""A Python 3 wrapper library for the New York Times API"""
__version__ = "0.4.1"
__version__ = "0.4.2"

from .api import NYTAPI

__all__ = ["NYTAPI"]
__all__ = ["NYTAPI"]
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="pynytimes",
version="0.4.1",
version="0.4.2",
description="A Python wrapper for (most) New York Times APIs",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -28,8 +28,9 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Sociology"
]
)
)

0 comments on commit 54785ba

Please sign in to comment.