Skip to content

Commit

Permalink
Remove Python 3.7 (#61)
Browse files Browse the repository at this point in the history
* Remove Python 3.7

* Bump version
  • Loading branch information
bennylope authored Jul 8, 2023
1 parent 0258317 commit 077a486
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11" ]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

1.4.0 (2023-07-08)
+++++++++++++++++++

* Drop support for Python 3.7

1.3.0 (2023-05-31)
+++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = "1.3"
version = "1.4"
# The full version, including alpha/beta/rc tags.
release = "1.3.0"
release = "1.4.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down
2 changes: 1 addition & 1 deletion src/geocodio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = "Ben Lopatin"
__email__ = "[email protected]"
__version__ = "1.3.0"
__version__ = "1.4.0"


from geocodio.client import GeocodioClient # noqa
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311, flake8
envlist = py38, py39, py310, py311, flake8

[gh-actions]
python =
Expand Down

0 comments on commit 077a486

Please sign in to comment.