Skip to content
This repository has been archived by the owner on Feb 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #373 from plus3it/dependabot/pip/click-8.1.2
Browse files Browse the repository at this point in the history
Bump click from 8.0.4 to 8.1.2
  • Loading branch information
mergify[bot] authored Apr 21, 2022
2 parents 6057850 + d0edd5b commit a3fc14e
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.0
current_version = 0.5.0
commit = True
tag = False
tag_name = v{new_version}
Expand Down
11 changes: 5 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ stages:
- test
- deploy
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "pypy3"
- "pypy3.7-7.3.5"

env:
global:
Expand All @@ -32,7 +31,7 @@ script:
jobs:
include:
- stage: lint
python: 3.7
python: 3.8
install:
- python -m pip install -r requirements/lint.txt
- python -m pip install --editable .
Expand All @@ -43,7 +42,7 @@ jobs:
- flake8
- stage: deploy
if: branch = master AND type != pull_request
python: 3.6
python: 3.8
env:
- JOB="Deploy to Test PyPI"
install: skip
Expand All @@ -63,7 +62,7 @@ jobs:
condition: '"$PRIOR_VERSION" = "$RELEASE_VERSION"'
- stage: deploy
if: branch = master AND type != pull_request
python: 3.6
python: 3.8
env:
- JOB="Deploy to GitHub Releases"
- RELEASE_BODY="* [$THIS_REPO v$RELEASE_VERSION CHANGELOG](https://github.com/$OWNER/$THIS_REPO/compare/$PRIOR_VERSION...$RELEASE_VERSION)"
Expand All @@ -84,7 +83,7 @@ jobs:
condition: '"$PRIOR_VERSION" != "$RELEASE_VERSION"'
- stage: deploy
if: tag is present
python: 3.6
python: 3.8
env:
- JOB="Deploy to PyPI"
install: skip
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGE LOG
==========

0.5.0 - 2022.04.21
-------------------
* [DEPRECATION] Deprecates Python 3.6 support.

0.4.0 - 2021.08.02
-------------------
* [FEATURE] Add option to include/exclude extras_require from required packages,
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pr:
- master

variables:
pythonVersion: 3.7
pythonVersion: 3.8
venvDirectory: $(System.DefaultWorkingDirectory)/venv

jobs:
Expand Down
2 changes: 1 addition & 1 deletion pyppyn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import uuid
import zipfile

__version__ = "0.4.0"
__version__ = "0.5.0"

__EXITOKAY__ = 0
FILE_DIR = ".pyppyn"
Expand Down
2 changes: 1 addition & 1 deletion requirements/install.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
click==8.0.4
click==8.1.2
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ classifiers =
Operating System :: Microsoft :: Windows
Programming Language :: Python
Programming Language :: Python :: 3
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Utilities
Expand Down

0 comments on commit a3fc14e

Please sign in to comment.