Skip to content

Commit

Permalink
fixup! Drop python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
prusse-martin committed Oct 30, 2023
1 parent f233ca3 commit 90e331c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
CONDA_PY: ["37", "38", "39", "310"]
PYTHON_VERSION: ["3.7", "3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:
channel-priority: true
- name: Install
env:
CONDA_PY: ${{ matrix.CONDA_PY }}
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
run: |
conda config --system --set always_yes yes --set changeps1 no
conda install -c conda-forge conda-devenv
Expand Down
2 changes: 1 addition & 1 deletion _base_environment.devenv.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: qmxgraph

dependencies:
- python >=3.6
- python >=3.7

- attrs >=17
- colorama
Expand Down
3 changes: 1 addition & 2 deletions environment.devenv.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{% set TEST_QMXGRAPH = os.environ.get('TEST_QMXGRAPH', '0') != '0' %}
{% set PYTHON_VERSION = os.environ.get('PYTHON_VERSION', '3.6') %}
{% set PYTHON_VERSION = os.environ.get('TRAVIS_PYTHON_VERSION', PYTHON_VERSION) %}
{% set PYTHON_VERSION = os.environ.get('PYTHON_VERSION', '3.10') %}

name: qmxgraph

Expand Down
2 changes: 1 addition & 1 deletion esss_environment.devenv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ environment:
{% endif %}

dependencies:
- python>=3.5
- python>=3.7
- mxgraph>=3.7.5

- esss-pylupdate5>=5.6.0+1
Expand Down

0 comments on commit 90e331c

Please sign in to comment.