Skip to content

Commit

Permalink
Pin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jun 1, 2021
1 parent 23da1ad commit 4ffe367
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.10.2 (2021-05-31)

* Pins dependencies

## v0.10.1 (2021-04-12)

* Fixes a bug for brand new repos that weren't yet cloned not being able to read the harvey configuration due to bad ordering of operations
Expand Down
2 changes: 1 addition & 1 deletion harvey/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Global():
"""
DOCKER_VERSION = 'v1.41' # Docker API version
# TODO: Figure out how to sync this version number with the one in `setup.py`
HARVEY_VERSION = '0.10.1' # Harvey release
HARVEY_VERSION = '0.10.2' # Harvey release
PROJECTS_PATH = 'projects'
PROJECTS_LOG_PATH = 'logs/projects'
HARVEY_LOG_PATH = 'logs/harvey'
Expand Down
30 changes: 16 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,27 @@
import setuptools

with open("README.md", "r") as fh:
with open('README.md', 'r') as fh:
long_description = fh.read()

REQUIREMENTS = [
'flask >= 1.1.2',
'requests >= 2.24.0',
'requests_unixsocket >= 0.2.0',
'slackclient >= 2.7.2',
'python-dotenv >= 0.10.0'
'flask == 1.*', # TODO: bump to v2 after thorough testing
'requests == 2.*',
'requests_unixsocket == 0.2.*',
'slackclient == 2.*',
'python-dotenv == 0.17.*'
]

DEV_REQUIREMENTS = [
'coveralls == 3.*',
'flake8',
'mock == 4.*',
'pytest == 6.*',
'pytest-cov == 2.*',
]

setuptools.setup(
name='harvey-ci',
version='0.10.1',
version='0.10.2',
description='Your personal CI/CD and Docker orchestration platform.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -28,13 +36,7 @@
],
install_requires=REQUIREMENTS,
extras_require={
'dev': [
'pytest >= 6.0.0',
'pytest-cov >= 2.10.0',
'coveralls >= 2.1.2',
'flake8 >= 3.8.0',
'mock >= 4.0.0',
]
'dev': DEV_REQUIREMENTS
},
entry_points={
'console_scripts': [
Expand Down

0 comments on commit 4ffe367

Please sign in to comment.