Skip to content
This repository was archived by the owner on Mar 31, 2022. It is now read-only.

Commit 0f6bc57

Browse files
author
Pavel Sobolev
authored
(#2) Удаление зависимостей setuptools и wheel:
* Теперь пакеты setuptools и wheel должны быть установлены вручную.
1 parent 1bfaa36 commit 0f6bc57

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

.github/scripts/ModuleTest (master).sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function check_if_succeeded {
2727
}
2828

2929
# Проверка на удачную установку с PyPI
30-
printf "\nУстановка пакета с TestPyPI.\n"
30+
printf "\nУстановка пакета с PyPI.\n"
3131
check_if_succeeded "make install-pypi"
3232

3333
# Проверка пропуска примера

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@
4545
## Правило для установки версии с TestPyPI
4646
install-testpypi :
4747
python3 -m pip install setuptools
48-
python3 -m pip install pybind11
4948
python3 -m pip install wheel
49+
python3 -m pip install pybind11
5050
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps scats
5151

5252
## Правило для установки версии с PyPI
5353
install-pypi :
54+
python3 -m pip install setuptools
55+
python3 -m pip install wheel
5456
python3 -m pip install scats
5557

5658
## Правило для установки версии для разработчика

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[![](https://img.shields.io/badge/GitHub-Paveloom/C3.1-5DA399.svg)](https://github.com/Paveloom/C3.1) [![](https://img.shields.io/badge/license-Unlicense-5DA399.svg)](https://github.com/Paveloom/C3/blob/master/LICENSE.md) <br>
2-
[![](https://img.shields.io/badge/release-v0.2.1-informational.svg)](https://github.com/Paveloom/C3.1/releases/tag/v0.2.1) [![](https://img.shields.io/badge/platforms-linux,%20macOS-3E6680.svg)](#) [![](https://img.shields.io/badge/requires-python%203.7%2B-critical.svg)](https://www.python.org/downloads/) [![](https://img.shields.io/pypi/format/scats)](https://pypi.org/project/scats/) [![](https://img.shields.io/pypi/status/scats)](#)
2+
[![](https://img.shields.io/badge/release-v0.2.2-informational.svg)](https://github.com/Paveloom/C3.1/releases/tag/v0.2.2) [![](https://img.shields.io/badge/platforms-linux,%20macOS-3E6680.svg)](#) [![](https://img.shields.io/badge/requires-python%203.7%2B-critical.svg)](https://www.python.org/downloads/) [![](https://img.shields.io/pypi/format/scats.svg)](https://pypi.org/project/scats/) [![](https://img.shields.io/pypi/status/scats.svg)](#)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, Extension
22
from Модуль.scats.build import get_pybind_include, BuildExt
33

4-
__version__ = '0.2.1'
4+
__version__ = '0.2.2'
55

66
ext_modules = [
77
Extension(
@@ -33,7 +33,7 @@
3333
include_package_data=True,
3434
package_dir={'':'Модуль/scats'},
3535
ext_modules=ext_modules,
36-
install_requires=['setuptools', 'pybind11>=2.4', 'wheel'],
36+
install_requires=['pybind11>=2.4'],
3737
setup_requires=['pybind11>=2.4'],
3838
cmdclass={'build_ext': BuildExt},
3939
classifiers=[
0 Bytes
Binary file not shown.

Архивы/Модуль.zip

0 Bytes
Binary file not shown.

Архивы/Примеры.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)