Skip to content

Commit e974378

Browse files
committed
Try to solve poetry dependency issue resolution upstream
1 parent 30fb16a commit e974378

3 files changed

Lines changed: 73 additions & 66 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ you are using. For example, if you are using BrainFrame version 0.26.1:
4141

4242
.. code-block:: bash
4343
44-
pip3 install brainframe-api==0.26.1
44+
pip3 install brainframe-api
4545
4646
Documentation
4747
-------------

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
packages = [ { include = "brainframe/api" } ]
33
name = "brainframe-api"
4-
version = "0.27.0"
4+
version = "0.28.0"
55
description = "Provides a Python wrapper around the BrainFrame REST API."
66
authors = ["Aotu"]
77
license = "BSD-3-Clause"
@@ -18,7 +18,7 @@ python = "^3.6"
1818
requests = "^2.24.0"
1919
pillow = "^7.2.0"
2020
numpy = "^1.16"
21-
dataclasses = { version = "^0.7", python = "~3.6" }
21+
dataclasses = { version = "^0.7", python = ">=3.6,<3.7" }
2222

2323
[tool.poetry.dev-dependencies]
2424

0 commit comments

Comments
 (0)