se elimina soporte python 3.6

FossilOrigin-Name: 0f05bddb22c6ecac02d9bb6cc00b4d5c8a22f88ed921ad54cb0863b4609a49b4
This commit is contained in:
bit4bit 2022-10-14 16:20:26 +00:00
parent d5a96ea07d
commit 7156102a4a
3 changed files with 14 additions and 20 deletions

View File

@ -57,6 +57,17 @@ If you are proposing a feature:
Get Started! Get Started!
------------ ------------
Using docker
------------
1. make -f Makefile.dev dev-setup
1. make -f Makefile.dev dev-shell
2. make -f Makefile.dev test
3. make -f Makefile.dev tox
From Source Code
-----------
Ready to contribute? Here's how to set up `facho` for local development. Ready to contribute? Here's how to set up `facho` for local development.
1. Fork the `facho` repo . 1. Fork the `facho` repo .
@ -94,13 +105,6 @@ Ready to contribute? Here's how to set up `facho` for local development.
7. Submit a pull request through the GitHub website. 7. Submit a pull request through the GitHub website.
Using docker
------------
1. make -f Makefile.dev build
2. make -f Makefile.dev dev-shell
3. make -f Makefile.dev python3.8 setup.py develop
4. make -f Makefile.dev python3.8 setup.py test
Pull Request Guidelines Pull Request Guidelines
----------------------- -----------------------

View File

@ -9,7 +9,6 @@ RUN apt-get install -y --no-install-recommends \
ca-certificates ca-certificates
RUN wget https://bootstrap.pypa.io/get-pip.py \ RUN wget https://bootstrap.pypa.io/get-pip.py \
&& python3 get-pip.py pip==21.3 \
&& python3.7 get-pip.py pip==21.3 \ && python3.7 get-pip.py pip==21.3 \
&& python3.8 get-pip.py pip==21.3 \ && python3.8 get-pip.py pip==21.3 \
&& rm get-pip.py && rm get-pip.py
@ -20,11 +19,9 @@ RUN apt-get install -y --no-install-recommends \
build-essential \ build-essential \
zip zip
RUN python3.6 --version
RUN python3.7 --version RUN python3.7 --version
RUN python3.8 --version RUN python3.8 --version
RUN pip3.6 install setuptools setuptools-rust
RUN pip3.7 install setuptools setuptools-rust RUN pip3.7 install setuptools setuptools-rust
RUN pip3.8 install setuptools setuptools-rust RUN pip3.8 install setuptools setuptools-rust

13
tox.ini
View File

@ -1,17 +1,10 @@
[tox] [tox]
envlist = py27, py34, py35, py36, flake8 envlist = py37, py38
[travis] [travis]
python = python =
3.6: py36 3.7: py37
3.5: py35 3.8: py38
3.4: py34
2.7: py27
[testenv:flake8]
basepython = python
deps = flake8
commands = flake8 facho
[testenv] [testenv]
setenv = setenv =