Skip to content

Commit

Permalink
Bump Python requirement; disable appveyor test upload
Browse files Browse the repository at this point in the history
  • Loading branch information
knabar committed Jun 19, 2024
1 parent f6b5f22 commit ca586e5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python 3.7
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.8

- name: Install requirements
run: |
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test_script:
- django-admin test

after_test:
- if [ "$APPVEYOR_REPO_BRANCH" == "master" ]; then twine upload dist/mdid*.whl; fi
- if [ "$APPVEYOR_REPO_BRANCH" == "master--disabled" ]; then twine upload dist/mdid*.whl; fi

artifacts:
- path: dist/mdid*.whl
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
include_package_data=True,
zip_safe=False,
install_requires=REQUIRES,
python_requires='>=3.6',
python_requires='>=3.8',
entry_points={
'console_scripts': [
'mdid = rooibos.__main__:main',
Expand Down

0 comments on commit ca586e5

Please sign in to comment.