Skip to content

Commit

Permalink
!feat: bump minimum python version (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
kronenthaler authored Oct 11, 2023
1 parent 8a34c44 commit f627b1b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && matrix.python == '3.x'
with:
args: >
-Dsonar.projectVersion=${{ env.VERSION }}
Expand All @@ -63,7 +63,7 @@ jobs:

- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
if: github.event_name == 'push'
if: github.event_name == 'push' && matrix.python == '3.x'
with:
args: >
-Dsonar.projectVersion=${{ env.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion pbxproj/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
from pbxproj.XcodeProject import XcodeProject
from pbxproj.pbxsections import *

__version__ = '3.5.0'
__version__ = '4.0.0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ def read(*parts):
version=find_version("pbxproj", "__init__.py"),
license='MIT License',
install_requires=['openstep_parser>=1.5.1', 'docopt'],
python_requires='>=3.7',
python_requires='>=3.8',
packages=find_packages(exclude=['tests']))

0 comments on commit f627b1b

Please sign in to comment.