Skip to content

Commit 69c737d

Browse files
committed
kill poetry because of python-poetry/poetry#3855
1 parent ff0625d commit 69c737d

File tree

3 files changed

+53
-58
lines changed

3 files changed

+53
-58
lines changed

poetry.lock

-18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+36-40
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
[tool.poetry]
2-
name = "mongo-etls"
3-
version = "0.0.0"
4-
description = "Dev-prod ETLs and MARS jobs"
5-
authors = ["Ryan Timmons <[email protected]>"]
6-
packages = [
7-
{include = "jobs", from="src"}
8-
]
9-
10-
[tool.poetry.dependencies]
11-
python = "^3.9"
12-
mars-util = "^0.7.16"
13-
14-
[tool.poetry.dev-dependencies]
15-
pytest = "^6.2"
16-
pytest-black = "^0.3"
17-
pytest-cov = "^2.8"
18-
pytest-flake8 = "^1.0"
19-
pytest-mypy = "^0.8"
20-
mypy = "^0.910"
21-
pytest-pydocstyle = "^2.0"
22-
black = "^21.7b0"
23-
pytest-structlog = "^0.3"
24-
pytest-isort = "^2.0"
25-
flake8-bugbear = "^21.4"
26-
flake8 = "3.9.2"
27-
28-
[[tool.poetry.source]]
29-
name = 'pypi_' # needed until python-poetry/poetry#3456 is resolved.
30-
url = 'https://pypi.org/simple'
31-
secondary = false
32-
33-
[[tool.poetry.source]]
34-
name = "mongodb"
35-
url = "https://pypi.mongodb.name"
36-
secondary = true
1+
#[tool.poetry]
2+
#name = "mongo-etls"
3+
#version = "0.0.0"
4+
#description = "Dev-prod ETLs and MARS jobs"
5+
#authors = ["Ryan Timmons <[email protected]>"]
6+
#packages = [
7+
# {include = "jobs", from="src"}
8+
#]
9+
#
10+
#[tool.poetry.dependencies]
11+
#python = "^3.9"
12+
#mars-util = "^0.7.16"
13+
#
14+
#[tool.poetry.dev-dependencies]
15+
#pytest = "^6.2"
16+
#pytest-black = "^0.3"
17+
#pytest-cov = "^2.8"
18+
#pytest-flake8 = "^1.0"
19+
#pytest-mypy = "^0.8"
20+
#mypy = "^0.910"
21+
#pytest-pydocstyle = "^2.0"
22+
#black = "^21.7b0"
23+
#pytest-structlog = "^0.3"
24+
#pytest-isort = "^2.0"
25+
#flake8-bugbear = "^21.4"
26+
#flake8 = "3.9.2"
27+
#
28+
#[[tool.poetry.source]]
29+
#name = 'pypi_' # needed until python-poetry/poetry#3456 is resolved.
30+
#url = 'https://pypi.org/simple'
31+
#secondary = false
32+
#
33+
#[[tool.poetry.source]]
34+
#name = "mongodb"
35+
#url = "https://pypi.mongodb.name"
36+
#secondary = true
3737

3838

3939
[tool.black]
@@ -51,10 +51,6 @@ line_length = 100
5151
[tool.pytest.ini_options]
5252
flake8-ignore = "W605 W503 W291 E203 E501 F821"
5353
addopts = "--flake8 --black --mypy --isort --pydocstyle"
54-
# mongodb_fixture_dir = "tests/integration_tests/fixtures"
55-
# mongodb_engine = "pymongo"
56-
# mongodb_host = "mongodb://localhost:28000/?serverSelectionTimeoutMS=100"
57-
# mongodb_dbname = "build-baron-tools-test"
5854
testpaths = [
5955
"src",
6056
"tests",

requirements-dev.txt

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pytest
2+
pytest-black
3+
pytest-cov
4+
pytest-flake8
5+
pytest-mypy
6+
mypy
7+
pytest-pydocstyle
8+
black
9+
pytest-structlog
10+
pytest-isort
11+
flake8-bugbear
12+
flake8
13+
14+
--extra-index-url https://pypi.mongodb.name/ mars-util
15+
16+
17+

0 commit comments

Comments
 (0)