Skip to content

Commit b3d86e4

Browse files
authored
Merge pull request #7 from VCTLabs/conda-cleanup
conda cleanup
2 parents cc62e86 + fee6d22 commit b3d86e4

4 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
platform: [ubuntu-latest, windows-latest, macos-latest]
16-
python-version: [3.9, '3.10', '3.11']
15+
platform: [ubuntu-latest, windows-2022, macos-latest]
16+
python-version: [3.8, 3.9, '3.10']
1717
runs-on: ${{ matrix.platform }}
1818
permissions:
1919
contents: read

conda/meta.yaml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "pygtail" %}
2-
{% set version = "0.14.0" %}
2+
{% set version = "0.14.0.2" %}
33

44
package:
55
name: {{ name|lower }}
@@ -17,8 +17,10 @@ build:
1717

1818
requirements:
1919
host:
20-
- python >=3.9
20+
- python >=3.6
2121
- pip
22+
- tomli
23+
- wheel
2224
- setuptools-scm
2325

2426
run:
@@ -33,12 +35,12 @@ test:
3335

3436

3537
about:
36-
home: https://github.com/sarnold/pygtail
37-
license: LGPL-2.1-or-later
38+
home: https://github.com/VCTLabs/pygtail
39+
license: GPL-2.0-or-later
3840
license_file: ../LICENSE
3941
summary: Reads log file lines that have not been read
40-
doc_url: "https://github.com/sarnold/pygtail/blob/main/README.rst"
41-
dev_url: "https://github.com/sarnold/pygtail"
42+
doc_url: "https://github.com/VCTLabs/pygtail/blob/main/README.rst"
43+
dev_url: "https://github.com/VCTLabs/pygtail"
4244

4345

4446
extra:

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers =
2424
Topic :: System :: Logging
2525

2626
[options]
27-
python_requires = >= 3.8
27+
python_requires = >= 3.6
2828

2929
setup_requires =
3030
setuptools_scm[toml]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ allowlist_externals =
7474
bash
7575

7676
deps =
77-
coverage
77+
coverage[toml]
7878

7979
commands =
8080
bash -c 'coverage combine .coverage.py*'

0 commit comments

Comments
 (0)