Skip to content

Commit ea9fca3

Browse files
authored
Merge pull request #783 from CitrineInformatics/feature/pla-10357-drop-3.6
[PLA-10357] Drop 3.6 support
2 parents 97a7aab + a07d3a7 commit ea9fca3

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
language: python
22
dist: bionic
33
python:
4-
- '3.6'
5-
- '3.7.13'
6-
- '3.8.13'
4+
- '3.7'
5+
- '3.8'
76
- '3.9'
8-
- '3.10.0'
9-
- '3.10.1'
7+
- '3.10'
108
install:
119
- pip install -U -r requirements.txt
1210
- pip install -U -r test_requirements.txt
@@ -30,7 +28,7 @@ deploy:
3028
local_dir: "./docs/_build/html/"
3129
on:
3230
tags: true
33-
python: '3.6' # only need this to run once
31+
python: '3.10' # only need this to run once
3432
- provider: pypi
3533
user: CitrineInformatics
3634
password: "$PYPI_PASSWORD"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Clone from github:
2121
git clone [email protected]:CitrineInformatics/citrine-python
2222
```
2323

24-
Create a virtual environment using Python >= 3.6.
24+
Create a virtual environment using Python >= 3.7.
2525
One option is to use conda, but it is not required.
2626

2727
```bash

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
},
4747
classifiers=[
4848
'Programming Language :: Python :: 3',
49-
'Programming Language :: Python :: 3.6',
5049
'Programming Language :: Python :: 3.7',
5150
'Programming Language :: Python :: 3.8',
5251
'Programming Language :: Python :: 3.9',

src/citrine/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.40.1'
1+
__version__ = '1.41.0'

0 commit comments

Comments
 (0)