We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3370f84 commit aa5e8d2Copy full SHA for aa5e8d2
.gitignore
@@ -112,3 +112,6 @@ dmypy.json
112
113
# Pyre type checker
114
.pyre/
115
+
116
+.vscode/
117
+poetry.lock
pyproject.toml
@@ -1,14 +1,15 @@
1
[tool.poetry]
2
name = "ServiceX_DID"
3
-version = "0.1.0"
4
-description = ""
+version = "1.0.0a1"
+description = "ServiceX DID Library Routines"
5
authors = ["Gordon Watts <gwatts@uw.edu>"]
6
7
[tool.poetry.dependencies]
8
python = "^3.8"
9
10
[tool.poetry.dev-dependencies]
11
pytest = "^5.2"
12
+flake8 = "^3.9.1"
13
14
[build-system]
15
requires = ["poetry-core>=1.0.0"]
src/servicex_did/__init__.py
@@ -1 +1 @@
-__version__ = '0.1.0'
+__version__ = '1.0.0a1'
0 commit comments