Skip to content

Commit 8962648

Browse files
authored
Merge pull request #4 from nexB/3-write-correctly
Write correctly to files #3
2 parents 3eaa11c + b181b03 commit 8962648

32 files changed

+3449
-144
lines changed

azure-pipelines.yml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,26 @@ jobs:
99

1010
- template: etc/ci/azure-posix.yml
1111
parameters:
12-
job_name: ubuntu18_cpython
13-
image_name: ubuntu-18.04
14-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
12+
job_name: ubuntu22_cpython
13+
image_name: ubuntu-22.04
14+
python_versions: ['3.8', '3.9', '3.10']
1515
test_suites:
16-
all: venv/bin/pytest -n 2 -vvs
16+
all: |
17+
sudo apt-get -y update
18+
sudo apt-get -y install build-essential strace graphviz
19+
venv/bin/pytest -n 2 -vvs
20+
1721
1822
- template: etc/ci/azure-posix.yml
1923
parameters:
2024
job_name: ubuntu20_cpython
2125
image_name: ubuntu-20.04
22-
python_versions: ['3.6', '3.7', '3.8', '3.9', '3.10']
26+
python_versions: ['3.8', '3.9', '3.10']
2327
test_suites:
24-
all: venv/bin/pytest -n 2 -vvs
28+
all: |
29+
sudo apt-get -y update
30+
sudo apt-get -y install build-essential strace graphviz
31+
venv/bin/pytest -n 2 -vvs
2532
2633
- template: etc/ci/azure-posix.yml
2734
parameters:
@@ -39,6 +46,14 @@ jobs:
3946
test_suites:
4047
all: venv/bin/pytest -n 2 -vvs
4148

49+
- template: etc/ci/azure-posix.yml
50+
parameters:
51+
job_name: macos12_cpython
52+
image_name: macos-12
53+
python_versions: ['3.8', '3.9', '3.10']
54+
test_suites:
55+
all: venv/bin/pytest -n 2 -vvs
56+
4257
- template: etc/ci/azure-win.yml
4358
parameters:
4459
job_name: win2019_cpython

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#altgraph==0.17.3
2+
#docopt==0.6.2

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ setup_requires = setuptools_scm[toml] >= 4
4444

4545
python_requires = >=3.6.*
4646

47-
install_requires =
48-
altgraph
49-
docopt
47+
#install_requires =
48+
# altgraph
49+
# docopt
5050

5151
[options.packages.find]
5252
where = src
@@ -58,6 +58,7 @@ testing =
5858
pytest-xdist >= 2
5959
aboutcode-toolkit >= 6.0.0
6060
black
61+
vendorize
6162

6263
docs =
6364
Sphinx >= 3.3.1

src/tracecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99

10-
__version__ = "0.10.0"
10+
__version__ = "0.20.0"

src/tracecode/_vendor/__init__.py

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Copyright (c) 2004 Istvan Albert unless otherwise noted.
2+
Copyright (c) 2006-2010 Bob Ippolito
3+
Copyright (2) 2010-2020 Ronald Oussoren, et. al.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to
7+
deal in the Software without restriction, including without limitation the
8+
rights to use, copy, modify, merge, publish, distribute, sublicense,
9+
and/or sell copies of the Software, and to permit persons to whom the
10+
Software is furnished to do so.
11+
12+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
15+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
16+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
17+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
18+
IN THE SOFTWARE.

0 commit comments

Comments
 (0)