mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	Remove Python 3.7 builds
This commit is contained in:
		
							parent
							
								
									50c5e9a2dd
								
							
						
					
					
						commit
						d82e167aea
					
				
							
								
								
									
										63
									
								
								.github/workflows/tests.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										63
									
								
								.github/workflows/tests.yml
									
									
									
									
										vendored
									
									
								
							| 
						 | 
					@ -30,7 +30,7 @@ jobs:
 | 
				
			||||||
      - name: Configure Python version
 | 
					      - name: Configure Python version
 | 
				
			||||||
        uses: actions/setup-python@v4
 | 
					        uses: actions/setup-python@v4
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          python-version: "3.7"
 | 
					          python-version: "3.8"
 | 
				
			||||||
          architecture: x64
 | 
					          architecture: x64
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: black
 | 
					      - name: black
 | 
				
			||||||
| 
						 | 
					@ -50,13 +50,9 @@ jobs:
 | 
				
			||||||
        os: [ubuntu-latest, windows-latest, macos-latest]
 | 
					        os: [ubuntu-latest, windows-latest, macos-latest]
 | 
				
			||||||
        python_version: ["3.11"]
 | 
					        python_version: ["3.11"]
 | 
				
			||||||
        include:
 | 
					        include:
 | 
				
			||||||
          - os: ubuntu-20.04
 | 
					 | 
				
			||||||
            python_version: "3.6"
 | 
					 | 
				
			||||||
          - os: windows-latest
 | 
					 | 
				
			||||||
            python_version: "3.7"
 | 
					 | 
				
			||||||
          - os: macos-latest
 | 
					          - os: macos-latest
 | 
				
			||||||
            python_version: "3.8"
 | 
					            python_version: "3.8"
 | 
				
			||||||
          - os: ubuntu-latest
 | 
					          - os: ubuntu-20.04
 | 
				
			||||||
            python_version: "3.9"
 | 
					            python_version: "3.9"
 | 
				
			||||||
          - os: windows-latest
 | 
					          - os: windows-latest
 | 
				
			||||||
            python_version: "3.10"
 | 
					            python_version: "3.10"
 | 
				
			||||||
| 
						 | 
					@ -85,7 +81,6 @@ jobs:
 | 
				
			||||||
      - name: Run mypy
 | 
					      - name: Run mypy
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          python -m mypy spacy
 | 
					          python -m mypy spacy
 | 
				
			||||||
        if: matrix.python_version != '3.6'
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Delete source directory and .egg-info
 | 
					      - name: Delete source directory and .egg-info
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
| 
						 | 
					@ -107,22 +102,22 @@ jobs:
 | 
				
			||||||
      - name: Test import
 | 
					      - name: Test import
 | 
				
			||||||
        run: python -W error -c "import spacy"
 | 
					        run: python -W error -c "import spacy"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#      - name: "Test download CLI"
 | 
					      #      - name: "Test download CLI"
 | 
				
			||||||
#        run: |
 | 
					      #        run: |
 | 
				
			||||||
#          python -m spacy download ca_core_news_sm
 | 
					      #          python -m spacy download ca_core_news_sm
 | 
				
			||||||
#          python -m spacy download ca_core_news_md
 | 
					      #          python -m spacy download ca_core_news_md
 | 
				
			||||||
#          python -c "import spacy; nlp=spacy.load('ca_core_news_sm'); doc=nlp('test')"
 | 
					      #          python -c "import spacy; nlp=spacy.load('ca_core_news_sm'); doc=nlp('test')"
 | 
				
			||||||
#        if: matrix.python_version == '3.9'
 | 
					      #        if: matrix.python_version == '3.9'
 | 
				
			||||||
#
 | 
					      #
 | 
				
			||||||
#      - name: "Test download_url in info CLI"
 | 
					      #      - name: "Test download_url in info CLI"
 | 
				
			||||||
#        run: |
 | 
					      #        run: |
 | 
				
			||||||
#          python -W error -m spacy info ca_core_news_sm | grep -q download_url
 | 
					      #          python -W error -m spacy info ca_core_news_sm | grep -q download_url
 | 
				
			||||||
#        if: matrix.python_version == '3.9'
 | 
					      #        if: matrix.python_version == '3.9'
 | 
				
			||||||
#
 | 
					      #
 | 
				
			||||||
#      - name: "Test no warnings on load (#11713)"
 | 
					      #      - name: "Test no warnings on load (#11713)"
 | 
				
			||||||
#        run: |
 | 
					      #        run: |
 | 
				
			||||||
#          python -W error -c "import ca_core_news_sm; nlp = ca_core_news_sm.load(); doc=nlp('test')"
 | 
					      #          python -W error -c "import ca_core_news_sm; nlp = ca_core_news_sm.load(); doc=nlp('test')"
 | 
				
			||||||
#        if: matrix.python_version == '3.9'
 | 
					      #        if: matrix.python_version == '3.9'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: "Test convert CLI"
 | 
					      - name: "Test convert CLI"
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
| 
						 | 
					@ -146,17 +141,17 @@ jobs:
 | 
				
			||||||
          python -m spacy train ner.cfg --paths.train ner-token-per-line-conll2003.spacy --paths.dev ner-token-per-line-conll2003.spacy --training.max_steps 10 --gpu-id -1
 | 
					          python -m spacy train ner.cfg --paths.train ner-token-per-line-conll2003.spacy --paths.dev ner-token-per-line-conll2003.spacy --training.max_steps 10 --gpu-id -1
 | 
				
			||||||
        if: matrix.python_version == '3.9'
 | 
					        if: matrix.python_version == '3.9'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#      - name: "Test assemble CLI"
 | 
					      #      - name: "Test assemble CLI"
 | 
				
			||||||
#        run: |
 | 
					      #        run: |
 | 
				
			||||||
#          python -c "import spacy; config = spacy.util.load_config('ner.cfg'); config['components']['ner'] = {'source': 'ca_core_news_sm'}; config.to_disk('ner_source_sm.cfg')"
 | 
					      #          python -c "import spacy; config = spacy.util.load_config('ner.cfg'); config['components']['ner'] = {'source': 'ca_core_news_sm'}; config.to_disk('ner_source_sm.cfg')"
 | 
				
			||||||
#          PYTHONWARNINGS="error,ignore::DeprecationWarning" python -m spacy assemble ner_source_sm.cfg output_dir
 | 
					      #          PYTHONWARNINGS="error,ignore::DeprecationWarning" python -m spacy assemble ner_source_sm.cfg output_dir
 | 
				
			||||||
#        if: matrix.python_version == '3.9'
 | 
					      #        if: matrix.python_version == '3.9'
 | 
				
			||||||
#
 | 
					      #
 | 
				
			||||||
#      - name: "Test assemble CLI vectors warning"
 | 
					      #      - name: "Test assemble CLI vectors warning"
 | 
				
			||||||
#        run: |
 | 
					      #        run: |
 | 
				
			||||||
#          python -c "import spacy; config = spacy.util.load_config('ner.cfg'); config['components']['ner'] = {'source': 'ca_core_news_md'}; config.to_disk('ner_source_md.cfg')"
 | 
					      #          python -c "import spacy; config = spacy.util.load_config('ner.cfg'); config['components']['ner'] = {'source': 'ca_core_news_md'}; config.to_disk('ner_source_md.cfg')"
 | 
				
			||||||
#          python -m spacy assemble ner_source_md.cfg output_dir 2>&1 | grep -q W113
 | 
					      #          python -m spacy assemble ner_source_md.cfg output_dir 2>&1 | grep -q W113
 | 
				
			||||||
#        if: matrix.python_version == '3.9'
 | 
					      #        if: matrix.python_version == '3.9'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: "Install test requirements"
 | 
					      - name: "Install test requirements"
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										2
									
								
								.github/workflows/universe_validation.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/universe_validation.yml
									
									
									
									
										vendored
									
									
								
							| 
						 | 
					@ -25,7 +25,7 @@ jobs:
 | 
				
			||||||
      - name: Configure Python version
 | 
					      - name: Configure Python version
 | 
				
			||||||
        uses: actions/setup-python@v4
 | 
					        uses: actions/setup-python@v4
 | 
				
			||||||
        with:
 | 
					        with:
 | 
				
			||||||
          python-version: "3.7"
 | 
					          python-version: "3.8"
 | 
				
			||||||
          architecture: x64
 | 
					          architecture: x64
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Validate website/meta/universe.json
 | 
					      - name: Validate website/meta/universe.json
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,6 +1,4 @@
 | 
				
			||||||
# build version constraints for use with wheelwright + multibuild
 | 
					# build version constraints for use with wheelwright + multibuild
 | 
				
			||||||
numpy==1.15.0; python_version<='3.7' and platform_machine!='aarch64'
 | 
					 | 
				
			||||||
numpy==1.19.2; python_version<='3.7' and platform_machine=='aarch64'
 | 
					 | 
				
			||||||
numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64'
 | 
					numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64'
 | 
				
			||||||
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'
 | 
					numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64'
 | 
				
			||||||
numpy==1.19.3; python_version=='3.9'
 | 
					numpy==1.19.3; python_version=='3.9'
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -30,8 +30,7 @@ pytest-timeout>=1.3.0,<2.0.0
 | 
				
			||||||
mock>=2.0.0,<3.0.0
 | 
					mock>=2.0.0,<3.0.0
 | 
				
			||||||
flake8>=3.8.0,<6.0.0
 | 
					flake8>=3.8.0,<6.0.0
 | 
				
			||||||
hypothesis>=3.27.0,<7.0.0
 | 
					hypothesis>=3.27.0,<7.0.0
 | 
				
			||||||
mypy>=0.990,<1.1.0; platform_machine != "aarch64" and python_version >= "3.7"
 | 
					mypy>=0.990,<1.1.0; platform_machine != "aarch64"
 | 
				
			||||||
types-dataclasses>=0.1.3; python_version < "3.7"
 | 
					 | 
				
			||||||
types-mock>=0.1.1
 | 
					types-mock>=0.1.1
 | 
				
			||||||
types-setuptools>=57.0.0
 | 
					types-setuptools>=57.0.0
 | 
				
			||||||
types-requests
 | 
					types-requests
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user