Skip to content

Commit

Permalink
Update Python version (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
jugmac00 committed Dec 20, 2022
1 parent 166a97f commit 5497cf5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:

strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]

steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ $ pytest .

## release history

### 1.3.0 (20.12.2022)

Add support for Python 3.11.

Remove support for Python 3.6.

### 1.2.0 (07.11.2021)

Add support for Python 3.10.
Expand Down
2 changes: 1 addition & 1 deletion eu_country_codes.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""All ISO 3166 country codes for EU countries."""

__version__ = "1.2.1.dev0"
__version__ = "1.3.0"

COUNTRY_CODES = [
"AT",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.6"
requires-python = ">=3.7"

0 comments on commit 5497cf5

Please sign in to comment.