Skip to content

Commit ff02d84

Browse files
author
azazelm3dj3d
authored
Merge pull request #14 from InQuest/fix-deps
Fix dependency issues
2 parents 367b7d4 + 5f5df0b commit ff02d84

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: inquestlabs-workflow
1+
name: tests
22

33
on: [push]
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Build Status](https://github.com/InQuest/python-inquestlabs/workflows/inquestlabs-workflow/badge.svg?branch=master)
1+
![Build Status](https://github.com/InQuest/python-inquestlabs/workflows/tests/badge.svg?branch=master)
22
![Developed by InQuest](https://inquest.net/images/inquest-badge.svg)
33
![PyPI Version](http://img.shields.io/pypi/v/inquestlabs.svg)
44

inquestlabs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
# extract version from installed package metadata
8585
__application_name__ = "inquestlabs"
86-
__version__ = "1.2.1"
86+
__version__ = "1.2.2"
8787
# __version__ = version(__application_name__)
8888
__full_version__ = f"{__application_name__} {__version__}"
8989

pyproject.toml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,31 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "inquestlabs"
7-
version = "1.2.1"
7+
version = "1.2.2"
88
license = {file = "LICENSE"}
99
authors = [
1010
{ name="InQuest", email="[email protected]" },
1111
]
1212
description = "A Pythonic interface and CLI tool for the InQuest Labs API"
1313
readme = "README.md"
1414
requires-python = ">=3.9"
15-
dynamic = ["dependencies"]
1615

17-
[tool.setuptools.dynamic]
18-
dependencies = {file = ["requirements.txt"]}
16+
dependencies = [
17+
"attrs",
18+
"certifi",
19+
"charset-normalizer",
20+
"docopt",
21+
"idna",
22+
"iniconfig",
23+
"packaging",
24+
"pluggy",
25+
"py",
26+
"pyparsing",
27+
"requests",
28+
"six",
29+
"tomli",
30+
"urllib3",
31+
]
1932

2033
classifiers = [
2134
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)