Skip to content

Commit f70edb3

Browse files
committed
Fix to running virtac. Commented out old test CI as I think its functionality is now done by copier
1 parent 5695176 commit f70edb3

File tree

4 files changed

+29
-28
lines changed

4 files changed

+29
-28
lines changed

.github/workflows/code.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
name: Code CI
1+
# name: Code CI
22

3-
on:
4-
push:
5-
pull_request:
3+
# on:
4+
# push:
5+
# pull_request:
66

7-
jobs:
8-
build:
9-
runs-on: ubuntu-latest
10-
strategy:
11-
fail-fast: false
12-
matrix:
13-
python: ["3.8", "3.9"]
7+
# jobs:
8+
# build:
9+
# runs-on: ubuntu-latest
10+
# strategy:
11+
# fail-fast: false
12+
# matrix:
13+
# python: ["3.8", "3.9"]
1414

15-
steps:
16-
- name: Checkout Source
17-
uses: actions/checkout@v2
15+
# steps:
16+
# - name: Checkout Source
17+
# uses: actions/checkout@v2
1818

19-
- name: Set up Python ${{ matrix.python }}
20-
uses: actions/setup-python@v2
21-
with:
22-
python-version: ${{ matrix.python }}
19+
# - name: Set up Python ${{ matrix.python }}
20+
# uses: actions/setup-python@v2
21+
# with:
22+
# python-version: ${{ matrix.python }}
2323

24-
- name: Install Python Dependencies
25-
run: |
26-
pip install pipenv twine
27-
pipenv install --dev --deploy --python $(which python) && pipenv graph
24+
# - name: Install Python Dependencies
25+
# run: |
26+
# pip install pipenv twine
27+
# pipenv install --dev --deploy --python $(which python) && pipenv graph
2828

29-
- name: Run tests and check formatting
30-
run: pipenv run tests
29+
# - name: Run tests and check formatting
30+
# run: pipenv run tests

src/atip/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
"""Atip entrypoint. This file currently does not do anything interesting, as atip is a library
2-
and not really designed to be a runnable application."""
1+
"""Atip entrypoint. This file currently does not do anything interesting, as atip is a
2+
library and not really designed to be a runnable application."""
33

44
from argparse import ArgumentParser
55
from collections.abc import Sequence

src/virtac/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
Version number as calculated by https://github.com/pypa/setuptools_scm
88
"""
99

10+
from atip._version import __version__
11+
1012
from . import __main__, atip_server, create_csv, masks, mirror_objects
11-
from ._version import __version__
1213

1314
__all__ = [
1415
"__version__",

src/virtac/__main__.py

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

1313
from softioc import builder, softioc
1414
from . import atip_server
15-
from ._version import __version__
15+
from atip._version import __version__
1616

1717
__all__ = ["main"]
1818

0 commit comments

Comments
 (0)