I get the following error trying to install my requirements:
ERROR: running install
running build
running build_ext
building 'pyodbc' extension
creating build
creating build/temp.linux-x86_64-3.6
creating build/temp.linux-x86_64-3.6/src
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -fPIC -DPYODBC_VERSION=4.0.22 -I/usr/local/include/python3.6m -c src/params.cpp -o build/temp.linux-x86_64-3.6/src/params.o -Wno-write-strings
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
In file included from src/params.cpp:10:0:
src/pyodbc.h:56:17: fatal error: sql.h: No such file or directory
#include <sql.h>
^
compilation terminated.
error: command 'gcc' failed with exit status 1
The solution for this is supposed to be like so:
sudo apt-get install -y python3-dev
but when i add it to my config.yml I get the following error from the console:
#!/bin/bash -eo pipefail
sudo apt-get install -y python3-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package python3-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'python3-dev' has no installation candidate
Exited with code 100
my config.yml file:
version: 2
jobs:
test:
docker:
- image: circleci/python:3.6.5
environment:
ENV: test
steps:
- run: |
sudo rm /etc/apt/sources.list
echo "deb http://archive.debian.org/debian/ jessie-backports main" | sudo tee -a /etc/apt/sources.list
echo "deb-src http://archive.debian.org/debian/ jessie-backports main" | sudo tee -a /etc/apt/sources.list
echo "Acquire::Check-Valid-Until false;" | sudo tee -a /etc/apt/apt.conf.d/10-nocheckvalid
echo 'Package: *\nPin: origin "archive.debian.org"\nPin-Priority: 500' | sudo tee -a /etc/apt/preferences.d/10-archive-pin
sudo apt-get update
- run:
name: installation
command: |
sudo apt-get install -y python3-dev
- checkout
- run:
name: run_unittests
command: 'pipenv install --skip-lock && pipenv run run_tests.py'
workflows:
version: 2
unittests:
jobs:
- test