Skip to content

Commit 19fc2e9

Browse files
authored
Update python (#48)
* Update python * Yep those are strings
1 parent 2189144 commit 19fc2e9

3 files changed

Lines changed: 17 additions & 21 deletions

File tree

.github/workflows/main.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,21 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest]
23-
python-version: [3.6, 3.7, 3.8, 3.9]
23+
python-version: ["3.10", "3.14"]
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v6
2828

29-
- name: Setup conda
30-
uses: conda-incubator/setup-miniconda@v2
29+
- name: Install Conda environment with Micromamba
30+
uses: mamba-org/setup-micromamba@v2
3131
with:
32-
python-version: ${{ matrix.python-version }}
33-
mamba-version: "*"
34-
auto-activate-base: false
35-
channels: conda-forge
36-
37-
- name: Install dependencies
38-
run: mamba install pytest pytest-cov flake8
32+
environment-name: py2vega
33+
create-args: >-
34+
python=${{ matrix.python-version }}
35+
pytest
36+
pytest-cov
37+
flake8
3938
4039
- name: Install py2vega
4140
run: pip install -e .

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# py2vega
22

3-
4-
[![Travis](https://travis-ci.org/QuantStack/py2vega.svg?branch=master)](https://travis-ci.org/QuantStack/py2vega)
5-
[![Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/QuantStack/Lobby)
6-
73
A Python to [Vega-expression](https://vega.github.io/vega/docs/expressions/) transpiler.
84

95
## Installation

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
license='BSD 3-Clause',
1515
keywords='python vega vega-expression',
1616
packages=find_packages(exclude=['test']),
17-
python_requires='>=3.6',
17+
python_requires='>=3.10',
1818
install_requires=[
19-
'gast>=0.4.0,<0.5'
19+
'gast>=0.7.0,<0.8'
2020
],
2121
extras_require={
2222
'testing': ['pytest', 'flake8'],
@@ -26,10 +26,11 @@
2626
'Intended Audience :: Developers',
2727
'Operating System :: OS Independent',
2828
'Programming Language :: Python :: 3',
29-
'Programming Language :: Python :: 3.6',
30-
'Programming Language :: Python :: 3.7',
31-
'Programming Language :: Python :: 3.8',
32-
'Programming Language :: Python :: 3.9',
29+
'Programming Language :: Python :: 3.10',
30+
'Programming Language :: Python :: 3.11',
31+
'Programming Language :: Python :: 3.12',
32+
'Programming Language :: Python :: 3.13',
33+
'Programming Language :: Python :: 3.14',
3334
'Topic :: Software Development :: Libraries :: Python Modules',
3435
],
3536
)

0 commit comments

Comments
 (0)