Skip to content

Commit

Permalink
Bump/cleanup packages (#81):
Browse files Browse the repository at this point in the history
I also removed the poetry lock file and the requirements.txt file, since this is
a library, and the exact versions of the installed packages do not matter for
the end user, just that the correct range is in place.

In addition, proper version ranges have been added for `mypy` and `type_extentions`.

Closes #40.
  • Loading branch information
dosisod authored Oct 21, 2022
1 parent 8fab911 commit 9cd8341
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 302 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
all: flake8 mypy black isort test refurb

install:
pip install -r requirements.txt
pip install .
pip install -r dev-requirements.txt

install-local:
Expand Down
6 changes: 3 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
attrs==22.1.0
black==22.8.0
black==22.10.0
click==8.1.3
colorama==0.4.5
coverage==6.4.4
coverage==6.5.0
flake8==5.0.4
iniconfig==1.1.1
isort==5.10.1
Expand All @@ -16,4 +16,4 @@ pycodestyle==2.9.1
pyflakes==2.5.0
pyparsing==3.0.9
pytest==7.1.3
pytest-cov==3.0.0
pytest-cov==4.0.0
291 changes: 0 additions & 291 deletions poetry.lock

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.10"
mypy = "^0.981"
python = ">=3.10"
mypy = ">=0.981, <=0.982"
tomli = {version = "^2.0.1", python = "<3.11"}

[tool.poetry.dev-dependencies]
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

0 comments on commit 9cd8341

Please sign in to comment.