Skip to content

Commit 5b5f34c

Browse files
committed
Implement python-chess version pinning
Fixes #28
2 parents 25df8da + c26193b commit 5b5f34c

File tree

3 files changed

+204
-2
lines changed

3 files changed

+204
-2
lines changed

Pipfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[[source]]
2+
name = "pypi"
3+
url = "https://pypi.org/simple"
4+
verify_ssl = true
5+
6+
[dev-packages]
7+
pytest = "~=5.0.1"
8+
pytest-cov = "~=2.7.1"
9+
pytest-pudb = "~=0.7.0"
10+
11+
[packages]
12+
python-chess = "==0.27.3"
13+
14+
[requires]
15+
python_version = "3.7"

Pipfile.lock

Lines changed: 187 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
description='adds comments and analysis to chess games',
2323
long_description=long_description,
2424

25-
version='1.1.2',
25+
version='1.1.3',
2626

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

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

0 commit comments

Comments
 (0)