Skip to content

Commit

Permalink
Implement python-chess version pinning
Browse files Browse the repository at this point in the history
Fixes #28
  • Loading branch information
rpdelaney committed Jul 30, 2019
2 parents 25df8da + c26193b commit 5b5f34c
Show file tree
Hide file tree
Showing 3 changed files with 204 additions and 2 deletions.
15 changes: 15 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest = "~=5.0.1"
pytest-cov = "~=2.7.1"
pytest-pudb = "~=0.7.0"

[packages]
python-chess = "==0.27.3"

[requires]
python_version = "3.7"
187 changes: 187 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
description='adds comments and analysis to chess games',
long_description=long_description,

version='1.1.2',
version='1.1.3',

# The project's main homepage.
url='https://github.com/rpdelaney/python-chess-annotator',
Expand Down Expand Up @@ -80,7 +80,7 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['python-chess'],
install_requires=['python-chess==0.27.3'],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down

0 comments on commit 5b5f34c

Please sign in to comment.