Skip to content

Commit

Permalink
Merge pull request #35 from zillow/feature/CICD-8002
Browse files Browse the repository at this point in the history
CICD-8002: Update to new python version 3.9+
  • Loading branch information
andyg-zg authored Aug 27, 2024
2 parents 64e50d4 + c83dcea commit fa04aaf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.7'
python-version: '3.12'
- name: Install dependencies
run: |
python setup.py sdist
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release History

## 0.5.1 (2023-08-08)

- Update python version to 3.9+

## 0.5.0 (2023-03-31)

- Update python version to 3.7+
Expand Down
2 changes: 1 addition & 1 deletion battenberg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.5.0'
__version__ = '0.5.1'


from battenberg.core import Battenberg
Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,12 @@
'License :: OSI Approved :: Apache Software 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',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
python_requires=">=3.7",
python_requires=">=3.9",
extras_require={
'dev': ['pytest', 'pytest-cov', 'flake8', 'codecov']
}
Expand Down

0 comments on commit fa04aaf

Please sign in to comment.